code
stringlengths
1
983k
submission_id
stringlengths
10
10
problem_id
stringlengths
6
6
user_id
stringlengths
10
10
date
stringlengths
10
10
language
class label
13 classes
original_language
stringlengths
1
39
filename_ext
stringlengths
1
8
status
class label
1 class
cpu_time
int32
0
40k
memory
int32
0
2.59M
code_size
int32
1
983k
accuracy
stringlengths
3
7
using System; class QQ { static void Main() { for(int i=1; i<=9; i++) { for(int j=1; j<=9; j++) { Console.WriteLine(i+"x"+j+"="+i*j); } } } }
s306549672
p00000
u616613978
1336548943
6C#
C#
cs
0Accepted
20
5,532
176
1/1
using System; public class p0000{ public static int Main (string[] args) { for (int i = 1; i <= 9; ++i) for (int j = 1; j <= 9; ++j) Console.WriteLine ("{0}x{1}={2}", i, j, i*j); return 0; } }
s729707443
p00000
u529013669
1337155187
6C#
C#
cs
0Accepted
30
5,556
207
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { for (int i = 1; i <= 9; i++) { for (int i2 = 1; i2 <= 9; i2++) { Console.WriteLine(i + "x" + i2 + "=" + i * i2); } } } } }
s654575555
p00000
u677693804
1337308917
6C#
C#
cs
0Accepted
10
5,524
431
1/1
using System; public class p0000{ p0000(){ for(int i = 1; i <= 9; ++i) for(int j = 1; j <= 9; ++j) Console.WriteLine("{0}x{1}={2}", i, j, i*j); } public static int Main(string[] args){ new p0000(); return 0; } }
s162862953
p00000
u484711815
1337353315
6C#
C#
cs
0Accepted
10
5,600
231
1/1
class p0000 { static void Main(string[] args) { for (var i = 1; i <= 9; i++) for (var j = 1; j <= 9; j++) System.Console.WriteLine(string.Format("{0}x{1}={2}",i,j,i*j)); } }
s289311428
p00000
u906064746
1338881870
6C#
C#
cs
0Accepted
30
5,596
221
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { Console.WriteLine("1x1=1"); Console.WriteLine("1x2=2"); Console.WriteLine("1x3=3"); Console.WriteLine("1x4=4"); Console.WriteLine("1x5=5"); Console.WriteLine("1x6=6"); Console.WriteLine("1x7=7"); Console.WriteLine("1x8=8"); Console.WriteLine("1x9=9"); Console.WriteLine("2x1=2"); Console.WriteLine("2x2=4"); Console.WriteLine("2x3=6"); Console.WriteLine("2x4=8"); Console.WriteLine("2x5=10"); Console.WriteLine("2x6=12"); Console.WriteLine("2x7=14"); Console.WriteLine("2x8=16"); Console.WriteLine("2x9=18"); Console.WriteLine("3x1=3"); Console.WriteLine("3x2=6"); Console.WriteLine("3x3=9"); Console.WriteLine("3x4=12"); Console.WriteLine("3x5=15"); Console.WriteLine("3x6=18"); Console.WriteLine("3x7=21"); Console.WriteLine("3x8=24"); Console.WriteLine("3x9=27"); Console.WriteLine("4x1=4"); Console.WriteLine("4x2=8"); Console.WriteLine("4x3=12"); Console.WriteLine("4x4=16"); Console.WriteLine("4x5=20"); Console.WriteLine("4x6=24"); Console.WriteLine("4x7=28"); Console.WriteLine("4x8=32"); Console.WriteLine("4x9=36"); Console.WriteLine("5x1=5"); Console.WriteLine("5x2=10"); Console.WriteLine("5x3=15"); Console.WriteLine("5x4=20"); Console.WriteLine("5x5=25"); Console.WriteLine("5x6=30"); Console.WriteLine("5x7=35"); Console.WriteLine("5x8=40"); Console.WriteLine("5x9=45"); Console.WriteLine("6x1=6"); Console.WriteLine("6x2=12"); Console.WriteLine("6x3=18"); Console.WriteLine("6x4=24"); Console.WriteLine("6x5=30"); Console.WriteLine("6x6=36"); Console.WriteLine("6x7=42"); Console.WriteLine("6x8=48"); Console.WriteLine("6x9=54"); Console.WriteLine("7x1=7"); Console.WriteLine("7x2=14"); Console.WriteLine("7x3=21"); Console.WriteLine("7x4=28"); Console.WriteLine("7x5=35"); Console.WriteLine("7x6=42"); Console.WriteLine("7x7=49"); Console.WriteLine("7x8=56"); Console.WriteLine("7x9=63"); Console.WriteLine("8x1=8"); Console.WriteLine("8x2=16"); Console.WriteLine("8x3=24"); Console.WriteLine("8x4=32"); Console.WriteLine("8x5=40"); Console.WriteLine("8x6=48"); Console.WriteLine("8x7=56"); Console.WriteLine("8x8=64"); Console.WriteLine("8x9=72"); Console.WriteLine("9x1=9"); Console.WriteLine("9x2=18"); Console.WriteLine("9x3=27"); Console.WriteLine("9x4=36"); Console.WriteLine("9x5=45"); Console.WriteLine("9x6=54"); Console.WriteLine("9x7=63"); Console.WriteLine("9x8=72"); Console.WriteLine("9x9=81"); } } }
s248589575
p00000
u270820093
1342000505
6C#
C#
cs
0Accepted
10
5,188
3,496
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { for (int i = 1; i < 10; i++) for (int j = 1; j < 10; j++) Console.WriteLine(i + "x" + j+"="+i * j); } } }
s655647218
p00000
u907626292
1342189234
6C#
C#
cs
0Accepted
30
5,548
358
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; class Program { static void Main(string[] args) { foreach (var x in Enumerable.Range(1, 9)) { foreach (var y in Enumerable.Range(1, 9)) { Console.WriteLine("{0}x{1}={2}", x, y, x * y); } } } }
s043775186
p00000
u298087134
1342853997
6C#
C#
cs
0Accepted
20
5,772
367
1/1
using System; class main{ static void Main(string[] args){ for(int i=1;i<10;++i)for(int j=1;j<10;++j)Console.WriteLine(i+"x"+j+"="+(i*j)); } }
s361606218
p00000
u256940798
1345001429
6C#
C#
cs
0Accepted
20
5,536
150
1/1
using System; namespace AOJ.Volume0 { class Program0000 { static void Main(string[] args) { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i*j); } } } } }
s204092051
p00000
u069397954
1347297581
6C#
C#
cs
0Accepted
10
5,552
349
1/1
using System; class Test { static void Main(string[] args) { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine(i + "x" + j + "=" + (i * j)); } } } }
s663228121
p00000
u184541002
1351588047
6C#
C#
cs
0Accepted
10
5,540
200
1/1
using System; class test { static void Main() { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine(i+"x"+j+"="+(i*j)); } } } }
s910037634
p00000
u373127758
1351669941
6C#
C#
cs
0Accepted
10
5,524
244
1/1
using System; class test { static void Main() {for (int i = 1; i < 10; i++) for (int j = 1; j < 10; j++) Console.WriteLine(i+"x"+j+"="+i*j);} }
s295886131
p00000
u373127758
1351677160
6C#
C#
cs
0Accepted
10
5,536
148
1/1
using System; class test { static void Main() { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } }
s740506604
p00000
u373127758
1351677313
6C#
C#
cs
0Accepted
10
5,596
246
1/1
using System; class test { static void Main() { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine("{0}x{1}={2}",i,j,i*j); } } } }
s572975142
p00000
u373127758
1351684295
6C#
C#
cs
0Accepted
10
5,544
248
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace mondai0000 { class Program { static void Main(string[] args) { for( int i = 1; i <= 9; i++ ) { for( int j = 1; j <= 9; j++ ) { Console.WriteLine( "{0}x{1}={2}", i, j, i * j ); } } } } }
s714693059
p00000
u728930887
1354100283
6C#
C#
cs
0Accepted
10
5,548
310
1/1
using System; using System.Collections.Generic; using System.IO; namespace aaa { class MainClass { public static void Main(string[] args) { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.Out.WriteLine(i+"x"+j+"="+i*j); } } } } }
s778630088
p00000
u779627195
1354710497
6C#
C#
cs
0Accepted
10
5,536
282
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.WriteLine( Enumerable.Range(1, 9) .Select( _ => Enumerable.Range(1, 9).Select(__ => _.ToString() + "x" + __.ToString() + "=" + _ * __)) .SelectMany(_ => _).Aggregate((a, b) => a + Environment.NewLine + b)); } } }
s828179560
p00000
u256500088
1355409093
6C#
C#
cs
0Accepted
10
5,840
535
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace mondai0000 { class Program { static void Main(string[] args) { for( int i = 1; i <= 9; i++ ) { for( int j = 1; j <= 9; j++ ) { Console.WriteLine( "{0}x{1}={2}", i, j, i * j ); } } } } }
s433209387
p00000
u599358807
1357377265
6C#
C#
cs
0Accepted
20
5,552
395
1/1
using System; using System.Linq; namespace AOJ { class Program { public static void Main(string[] args) { foreach (var x in Enumerable.Range(1, 9)) foreach (var y in Enumerable.Range(1, 9)) Console.WriteLine("{0}x{1}={2}", x, y, x * y); } } }
s812425075
p00000
u480106104
1358905881
6C#
C#
cs
0Accepted
20
5,760
285
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { for (int i = 1; i <= 9; ++i) { for (int j = 1; j <= 9; ++j) { Console.WriteLine(i + "x" + j + "=" + (i * j)); } } } } }
s164136770
p00000
u967850487
1359630851
6C#
C#
cs
0Accepted
20
5,568
428
1/1
using System; class Class1 { static void Main(string[] args) { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } }
s681383879
p00000
u048020936
1359634572
6C#
C#
cs
0Accepted
20
5,548
267
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace AOJ { class Program { static void Main(string[] args) { for (int i = 1; i <= 9; i++) for (int j = 1; j <= 9; j++) Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } }
s864027614
p00000
u813384600
1360486630
6C#
C#
cs
0Accepted
20
5,588
284
1/1
using System; class Program { static bool checking(int[] a) { return (a[0] + a[1] == a[2] || a[1] + a[2] == a[0] || a[2] + a[0] == a[1]); } static int Main() { int res; for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { res = i * j; Console.WriteLine("{0}x{1}={2}", i, j, res); } } return 0; } }
s057616158
p00000
u828891518
1360510844
6C#
C#
cs
0Accepted
20
5,592
471
1/1
using System; namespace aizu { class No0000 { public static void Main() { for(int i=1;i <= 9;++i){ for(int j=1;j <= 9;++j){ Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } } }
s131603567
p00000
u403446452
1364879209
6C#
C#
cs
0Accepted
10
5,584
292
1/1
using System; using System.Linq; class Aoj { static void Main() { for(int i=1;i < 10;i++){ for(int j=1;j < 10;j++){ Console.WriteLine("{0}x{1}={2}",i,j,i*j); } } } }
s853307788
p00000
u455516672
1365598964
6C#
C#
cs
0Accepted
20
5,540
200
1/1
using System; class QQ { public static void Main() { for (int i = 1; i <= 9; i++) for (int j = 1; j <= 9; j++) Console.WriteLine(i + "x" + j + "=" + i * j); } }
s595657602
p00000
u773321822
1367405018
6C#
C#
cs
0Accepted
20
5,564
209
1/1
using System; class _0000 { public static void Main() { for (int i = 1; i <= 9; i++) for (int j = 1; j <= 9; j++) Console.WriteLine(i + "x" + j + "=" + i * j); } }
s403051066
p00000
u773321822
1367485741
6C#
C#
cs
0Accepted
10
5,520
211
1/1
using System; namespace aizu { public class No0000 { public static void Main() { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } } }
s563346472
p00000
u843935968
1368686489
6C#
C#
cs
0Accepted
20
5,592
340
1/1
using System; class _0000{ public static void Main(){ for(int i=1;i<=9;i++) for(int j=1;j<=9;j++) Console.WriteLine(i+"x"+j+"="+i*j); } }
s025580440
p00000
u804933011
1369583710
6C#
C#
cs
0Accepted
20
5,520
148
1/1
using System; class _0000 { public static void Main() { for(int i=1;i<=9;i++) for(int j=1;j<=9;j++) Console.WriteLine(i+"x"+j+"="+i*j); } }
s708377042
p00000
u804933011
1369583831
6C#
C#
cs
0Accepted
20
5,564
151
1/1
using System; class Program { static void Main(string[] args) { for(int i=1;i<=9;i++) for(int k=1;k<=9;k++) Console.WriteLine(i+"x"+k+"="+i*k); } }
s187281897
p00000
u804933011
1369583900
6C#
C#
cs
0Accepted
10
5,528
160
1/1
using System; using System.Linq; namespace AOJ0000 { class Program { static void Main() { foreach (var line in from i in Enumerable.Range(1, 9) from j in Enumerable.Range(1, 9) let k = i*j select i + "x" + j + "=" + k) { Console.WriteLine(line); } } } }
s643438725
p00000
u471278181
1371141649
6C#
C#
cs
0Accepted
20
5,836
442
1/1
using System; using System.Linq; using System.Collections.Generic; namespace AOJV0 { public class P0000 { public static void Main() { foreach(var s in from x in Enumerable.Range(1,9) from y in Enumerable.Range(1,9) select string.Format("{0}x{1}={2}", x, y, x * y)) { Console.WriteLine(s); } } } }
s897812545
p00000
u028893090
1371655624
6C#
C#
cs
0Accepted
20
5,836
463
1/1
using System; using System.Collections.Generic; using System.IO; using System.IO.Compression; using System.Linq; using System.Text; namespace AOJ { class Program { static void Main(string[] args) { foreach (var s in from x in Enumerable.Range(1, 9) from y in Enumerable.Range(1, 9) select string.Format("{0}x{1}={2}", x, y, x * y)) { Console.WriteLine(s); } } } }
s172064019
p00000
u813384600
1371733115
6C#
C#
cs
0Accepted
20
5,780
512
1/1
using System; namespace a { class Program { public static void Main(string[] args) { for(int i = 1; i <= 9; i++) for (int j = 1; j <= 9; j++) Console.WriteLine(i + "x" + j + "=" + (i * j)); } } }
s828031652
p00000
u093607836
1371984139
6C#
C#
cs
0Accepted
10
5,524
218
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Configuration; using System.Diagnostics; namespace test { class Program { static void Main(string[] args) { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } } }
s771950355
p00000
u844907268
1372231438
6C#
C#
cs
0Accepted
20
5,552
479
1/1
using System; namespace P0000_QQ { class Program { static void Main(string[] args) { for (int i = 1; i <= 9; i++ ) { for (int j = 1; j <= 9; j++ ) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } } }
s258036029
p00000
u059942744
1372383935
6C#
C#
cs
0Accepted
20
5,588
356
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QQ { class Program { static void Main(string[] args) { for(int i=1; i<10; i++){ for(int j=1; j<10; j++){ Console.WriteLine(i + "x" + j + "=" + i*j); } } } } }
s924399505
p00000
u495607670
1374306297
6C#
C#
cs
0Accepted
10
5,572
367
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; class Aoj0001 { static void Main() { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine(i + "x" + j + "=" + i * j); } } } }
s551338529
p00000
u485225329
1374593753
6C#
C#
cs
0Accepted
20
5,564
327
1/1
using System; using System.Linq; namespace AOJ { class Program { public static void Main(string[] args) { foreach(var i in Enumerable.Range(1, 9)) { foreach(var j in Enumerable.Range(1, 9)) { Console.WriteLine("{0}x{1}={2}", i, j, i*j); } } } } }
s010931871
p00000
u093607836
1375602486
6C#
C#
cs
0Accepted
20
5,768
282
1/1
using System; class _0000 { public static void Main() { for (int i = 1; i <= 9; i++) for (int j = 1; j <= 9; j++) Console.WriteLine(i + "x" + j + "=" + i * j); } }
s751778754
p00000
u773321822
1376200092
6C#
C#
cs
0Accepted
20
5,524
211
1/1
using System; class main { static void Main(string[] args) { //int g = 1; //int[] a = new int[2]; //string[] i = Console.ReadLine().Split(' '); //string[] j = Console.ReadLine().Split('\r'); //int j = int.Parse(Console.ReadLine()); //decimal j = decimal.Parse(Console.ReadLine()); //double j = double.Parse(Console.ReadLine()); //int y = int.Parse(i[0]); //int x = int.Parse(i[1]); //int z = int.Parse(i[2]); //a[0] = int.Parse(i[0]); //a[1] = int.Parse(i[1]); //a[2] = int.Parse(i[2]); for (int a = 1; a <= 9; ++a) { for (int b = 1; b <= 9; ++b) { Console.WriteLine(a + "x" + b + "=" + (a*b)); } } //Console.WriteLine((j*j*Math.PI) + " " + (2*j*Math.PI)); /*int d = a[0] / a[1]; int r = a[0] % a[1]; decimal f = (decimal)a[0] / (decimal)a[1]; Console.WriteLine(d + " " + r + " " + f);*/ /*int i = 1; while (true) { string[] s = Console.ReadLine().Split(' '); a[0] = int.Parse(s[0]); a[1] = int.Parse(s[1]); if (a[0] == 0 && a[1] == 0) break; Array.Sort(a); Console.WriteLine(a[0] + " " + a[1]); i++; }*/ /*if (y < x) { Console.WriteLine("a" + " < " + "b"); } if (y > x) { Console.WriteLine("a" + " > " + "b"); } if (y == x) { Console.WriteLine("a" + " == " + "b"); }*/ //Array.Sort(a); /*Console.WriteLine(a[0] + " " + a[1] + " " + a[2]); while(g <= 1000) { Console.WriteLine("Hello World"); ++g; }*/ /*int i = 1; while (true) { string s = Console.ReadLine(); if (s == "0") break; Console.WriteLine("Case {0}: {1}", i, s); i++; }*/ /*for (int s = 0; s < j.Length; ++s) { Console.WriteLine("Case " + (s+1) + ": " + j[s]); } Console.WriteLine(g);*/ Console.ReadKey(); } }
s897923964
p00000
u372027593
1377002181
6C#
C#
cs
0Accepted
20
5,580
2,466
1/1
using System; class main { static void Main(string[] args) { for (int a = 1; a <= 9; ++a) { for (int b = 1; b <= 9; ++b) { Console.WriteLine(a + "x" + b + "=" + (a*b)); } } Console.ReadKey(); } }
s675053694
p00000
u372027593
1377054880
6C#
C#
cs
0Accepted
10
5,592
291
1/1
using System; class main { static void Main(string[] args) { for (int a = 1; a <= 9; ++a) { for (int b = 1; b <= 9; ++b) { Console.WriteLine(a+"x"+b+"="+(a * b)); } } Console.ReadKey(); } }
s181805463
p00000
u372027593
1377055234
6C#
C#
cs
0Accepted
20
5,552
285
1/1
using System; class main { static void Main(string[] args) { for (int a = 1; a <= 9; ++a) { for (int b = 1; b <= 9; ++b) { Console.WriteLine(a+"x"+b+"="+(a * b)); } } } }
s031822933
p00000
u372027593
1377055314
6C#
C#
cs
0Accepted
10
5,536
258
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace AOJ { class Program { static void Main(string[] args) { for (int i = 1; i < 10; i++) for (int j = 1; j < 10; j++) Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } }
s399175145
p00000
u489546914
1377212878
6C#
C#
cs
0Accepted
20
5,596
360
1/1
using System; class AOJ { public static void Main(){ for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++){ Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } }
s996439093
p00000
u587005649
1378033034
6C#
C#
cs
0Accepted
20
5,588
225
1/1
using System; namespace _0000 { class Program { static void Main(string[] args) { const int MAXNUMBER = 9; for (int firstNumber = 1; firstNumber <= 9 ;firstNumber++) { for (int secondNumber = 1; secondNumber <= 9; secondNumber++) { Console.WriteLine("{0}x{1}={2}", firstNumber, secondNumber, firstNumber * secondNumber); } } } } }
s805021825
p00000
u160074256
1380376365
6C#
C#
cs
0Accepted
10
5,544
484
1/1
using System; namespace AOJ { class Program { static void Main(string[] args) { for(int i=1;i < 10;i++){ for(int j=1;j < 10;j++){ Console.WriteLine("{0}x{1}={2}",i,j,i*j); } } } } }
s276091219
p00000
u147801965
1380893263
6C#
C#
cs
0Accepted
20
5,596
238
1/1
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { for (int first = 1; first < 10; first++) { for (int second = 1; second < 10; second++) { Console.WriteLine(first.ToString() + "x" + second.ToString() + "=" + (first * second).ToString()); } } } } }
s660075760
p00000
u886662644
1387722012
6C#
C#
cs
0Accepted
10
5,500
451
1/1
using System; class aoj { public static void Main(string[] args) { for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++) Console.WriteLine(i+"x"+j+"="+i*j); } } }
s420171444
p00000
u146816547
1392969572
6C#
C#
cs
0Accepted
10
5,524
171
1/1
using System; class test { static void Main(string[] args) { for (int a = 1; a <= 9; a++ ) for (int b = 1; b <= 9; b++ ) Console.WriteLine("{0}x{1}={2}", a, b, a * b); } }
s488816423
p00000
u145643522
1394706395
6C#
C#
cs
0Accepted
20
5,548
220
1/1
using System; class calc { static void Main() { int i, j; for (i = 1; i < 10; i++) { for (j = 1; j < 10; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } }
s679716631
p00000
u085441951
1397911552
6C#
C#
cs
0Accepted
20
5,580
252
1/1
using System; using System.Text; using System.Collections; using System.Collections.Generic; using System.Linq; class Program { public const int INF = 1 << 25; static void Main() { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } }
s321595553
p00000
u145643522
1398411089
6C#
C#
cs
0Accepted
10
5,540
328
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace contest { class Program { static void Main(string[] args) { for (int x = 1; x < 10; x++) { for (int y = 1; y < 10; y++) { Console.WriteLine("{0}x{1}={2}",x,y,x*y); } } Console.ReadKey(); } } }
s461591883
p00000
u139551140
1402552821
6C#
C#
cs
0Accepted
20
5,564
443
1/1
using System; public static class Program { static void Main() { for (var i = 1; i <= 9; i++) { for (var j = 1; j <= 9; j++) { Console.WriteLine(i + "x" + j + "=" + i*j); } } } }
s024589874
p00000
u450315491
1597385483
6C#
C#
cs
0Accepted
50
17,836
301
1/1
using System; using System.Collections.Generic; using System.Linq; namespace ConsoleApp7 { class Program { static void Main(string[] args) { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { int imul = i * j; Console.WriteLine(i + "x" + j + "=" + imul); } } } } }
s766592281
p00000
u426343774
1594882890
6C#
C#
cs
0Accepted
50
13,732
443
1/1
using System; class Aizu { public static void Main() { for(int i = 1; i <= 9;i++) { for(int j = 1; j <= 9;j++) { Console.WriteLine(i + "x" + j + "=" + i * j); } } } }
s302382684
p00000
u039984641
1588248742
6C#
C#
cs
0Accepted
50
15,744
256
1/1
using System; class Program { static void Main() { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine($"{i}x{j}={i * j}"); } } } }
s443005297
p00000
u598281803
1585385114
6C#
C#
cs
0Accepted
30
15,844
249
1/1
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Linq.Expressions; using System.Text; class Procon { static void Main (string[] agrs) { for (int i = 1; i<= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i*j); } } } static string String () => Scanner.nextString (); static int Int () => int.Parse (Scanner.nextString ()); static long Long () => long.Parse (Scanner.nextString ()); static double Double () => double.Parse (Scanner.nextString ()); static char[] Chars () => String ().ToCharArray (); static string[] Strings () => Console.ReadLine ().Split (' '); static int[] Ints () => Strings ().Select (v => int.Parse (v)).ToArray (); static long[] Longs () => Strings ().Select (v => long.Parse (v)).ToArray (); static double[] Doubles () => Strings ().Select (v => double.Parse (v)).ToArray (); const int M = 1000000007; } class PriorityQueue<T> where T : IComparable<T> { public T[] heap; public int size; public int sign; public PriorityQueue (int N, bool descend = false) { heap = new T[N]; sign = 1; if (descend) sign = -1; } public int Compare (T x, T y) { return x.CompareTo (y) * sign; } public void Push (T x) { int i = size++; while (i > 0) { int p = (i - 1) / 2; if (Compare (x, heap[p]) >= 0) { break; } heap[i] = heap[p]; i = p; } heap[i] = x; } public T Pop () { T ret = heap[0]; T x = heap[--size]; int i = 0; while (i * 2 + 1 < size) { int a = i * 2 + 1; int b = i * 2 + 2; if (b < size && Compare (heap[a], heap[b]) > 0) { a = b; } if (Compare (heap[a], x) >= 0) { break; } heap[i] = heap[a]; i = a; } heap[i] = x; return ret; } public int Count () { return size; } } class Scanner { static string[] s = new string[0]; static int i = 0; static int max_i = 0; static public string nextString () { if (i >= s.Length) { s = Console.ReadLine ().Split (' '); max_i = s.Length; i = 0; if (max_i == 0) { return ""; } return s[i++]; } return s[i++]; } }
s194391815
p00000
u429149751
1577094967
6C#
C#
cs
0Accepted
60
17,824
2,596
1/1
using System; using System.Linq; using System.Collections.Generic; class AOJ { static void Main() { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine($"{i}x{j}={i * j}"); } } } }
s676849621
p00000
u539632126
1574599836
6C#
C#
cs
0Accepted
50
15,876
298
1/1
using System; namespace vol0_0000 { class Program { static void Main(string[] args) { for(int i=1; i<=9; i++) { for(int j=1; j<=9; j++) { Console.WriteLine("{0}x{1}={2}",i, j, i * j); } } } } }
s029497519
p00000
u285565474
1573610426
6C#
C#
cs
0Accepted
20
15,648
335
1/1
using System; class Program{ static void Main(string[] args){ for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++){ Console.WriteLine("{0}x{1}={2}", i, j, i*j); } } } }
s603371528
p00000
u235642060
1571206344
6C#
C#
cs
0Accepted
60
15,788
230
1/1
using System; namespace procon { class Program { static void Main(string[] args) { int i, j; for (i = 1; i <= 9; i++) { for (j = 1; j <= 9; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } } }
s245704729
p00000
u198069342
1570770676
6C#
C#
cs
0Accepted
60
17,760
358
1/1
using System; namespace Volume0_0000 { class Program { static void Main(string[] args) { for(int i = 1; i <= 9; i++) { for(int j = 1; j <= 9; j++) { Console.WriteLine($"{i}x{j}={i * j}"); } } } } }
s784225691
p00000
u065247149
1565591319
6C#
C#
cs
0Accepted
60
15,808
228
1/1
using System; using System.Linq; class Program { static void Main() { Enumerable.Range(1, 9) .SelectMany(i => Enumerable.Range(1, 9) .Select(j => string.Format($"{i}x{j}={i * j}"))) .ToList() .ForEach(Console.WriteLine); } }
s490844515
p00000
u662243091
1565411131
6C#
C#
cs
0Accepted
60
16,328
298
1/1
using System; namespace object1 { public class Program { public static void Main(string[] args) { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine(i + "x" + j+"="+i*j); } } } } }
s060311653
p00000
u198520917
1565009413
6C#
C#
cs
0Accepted
50
13,776
362
1/1
using System; public class f{ public static void Main(){ for(int i=1;i<10;i++){ for(int j=1;j<10;j++){ Console.WriteLine(i+"x"+j+"="+i*j); } } return ; } }
s843238693
p00000
u001166815
1563511243
6C#
C#
cs
0Accepted
50
13,776
237
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _0001 { class Program { static void Main(string[] args) { int[] numberFirst = new int[9]; int[] numberSecond = new int[9]; int answer; for (int i = 1; i < 10; ++i) { numberFirst[i-1] = i; for (int j = 1; j < 10; ++j) { numberSecond[j - 1] = j; answer = numberFirst[i-1] * numberSecond[j-1]; Console.WriteLine("{0}x{1}={2}",numberFirst[i-1],numberSecond[j-1],answer); } } } } }
s843062611
p00000
u623508736
1562120340
6C#
C#
cs
0Accepted
50
15,736
737
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _0000 { class Program { static void Main(string[] args) { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine(i + "x" + j + "=" + i * j ); } } } } }
s102973108
p00000
u756001100
1561685138
6C#
C#
cs
0Accepted
50
13,700
445
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AOJVolume0_0000 { class Program { static void Main(string[] args) { for (int i = 1; i <= 9; ++i) { for (int j = 1; j <= 9; ++j) { Console.WriteLine(i + "x" + j + "=" + i * j); } } } } }
s783835889
p00000
u491202260
1561603617
6C#
C#
cs
0Accepted
40
15,760
454
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _0000 { class Program { static void Main(string[] args) { // 1x1=1から9x9=81までの九九を出力して終了するプログラム for (int i = 0; i < 9; i++) { for (int j = 0; j < 9; j++) { Console.WriteLine((i + 1).ToString() + "x" + (j + 1).ToString() + "=" + ((i + 1) * (j + 1))); } } } } }
s980931173
p00000
u399243062
1561601061
6C#
C#
cs
0Accepted
50
15,756
582
1/1
using System; namespace volume { class Program { static void Main(string[] args) { for (int i = 0; i < 9; i++) { for (int j = 0; j < 9; j++) Console.WriteLine("{0}{1}{2}{3}{4}", i+1, "x", j+1, "=", (i+1) * (j+1)); } } } }
s353502401
p00000
u766798115
1561592930
6C#
C#
cs
0Accepted
60
15,824
332
1/1
using System; namespace Volumen0 { class Program { static void Main(string[] args) { for (int i = 1; i <= 9; i++) { for (int j =1;j<=9;j++) { Console.WriteLine("{0}x{1}={2}",i,j,i*j); } } } } }
s996362740
p00000
u404054163
1560401453
6C#
C#
cs
0Accepted
40
13,612
336
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace QQ { class Program { static void Main(string[] args) { for (int i = 1; i <= 9; ++i) { for (int j = 1; j <= 9; ++j) { Console.WriteLine(i + "x" + j + "=" + i * j); } } } } }
s759635311
p00000
u990595577
1557280880
6C#
C#
cs
0Accepted
50
13,744
441
1/1
using System; class Program { public static void Main() { for(int i = 1; i <= 9; i++) { for(int j = 1; j <= 9;j++) { Console.WriteLine("{0}x{1}={2}",i,j,i*j); } } } }
s041291294
p00000
u824095664
1556601034
6C#
C#
cs
0Accepted
60
15,772
255
1/1
using System; class Prob0000 { static void Main(string[] args) { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } }
s719292451
p00000
u056405822
1554053752
6C#
C#
cs
0Accepted
60
15,820
272
1/1
using System; class Sample01 { static void Main(){ for (int i = 1; i < 10;i++) { for (int j = 1; j < 10; j++) { Console.WriteLine(i+"x"+j+"="+i*j); } } } }
s794302801
p00000
u139728050
1552325166
6C#
C#
cs
0Accepted
50
13,760
269
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace _0000 { public class Program { public static void Main(string[] args) { for (int i = 1 ; i < 10 ; i++) { for (int j = 1 ; j < 10 ; j++) { Console.WriteLine("{0}x{1}={2}",i,j,i*j); } } } static string ReadSt() { return Console.ReadLine(); } static int ReadInt() { return int.Parse(Console.ReadLine()); } static long ReadLong() { return long.Parse(Console.ReadLine()); } static double ReadDouble() { return double.Parse(Console.ReadLine()); } static string[] ReadStAr(char sep = ' ') { return Console.ReadLine().Split(sep); } static int[] ReadIntAr(char sep = ' ') { return Array.ConvertAll(Console.ReadLine().Split(sep), e => int.Parse(e)); } static long[] ReadLongAr(char sep = ' ') { return Array.ConvertAll(Console.ReadLine().Split(sep), e => long.Parse(e)); } static double[] ReadDoubleAr(char sep = ' ') { return Array.ConvertAll(Console.ReadLine().Split(sep), e => double.Parse(e)); } static string WriteAr(int[] array, string sep = " ") { return String.Join(sep, array.Select(x => x.ToString()).ToArray()); } static string WriteAr(double[] array, string sep = " ") { return String.Join(sep, array.Select(x => x.ToString()).ToArray()); } static string WriteAr(long[] array, string sep = " ") { return String.Join(sep, array.Select(x => x.ToString()).ToArray()); } } }
s919927430
p00000
u363036235
1544862232
6C#
C#
cs
0Accepted
60
15,684
1,605
1/1
using System; namespace AizuOnlineJudge { class Program { static void Main(string[] args) { for(int i = 1; i <= 9; ++i) { for(int j = 1; j <= 9; ++j) { Console.WriteLine($"{i}x{j}={i * j}"); } } } } }
s456111256
p00000
u888134495
1544513822
6C#
C#
cs
0Accepted
50
13,736
342
1/1
using System; class MainClass { public static void Main(string[] args) { for (int i = 1; i <= 9; i++){ for (int j = 1; j <= 9; j++){ Console.WriteLine(i.ToString() + "x" + j.ToString() + "=" + (i * j).ToString()); } } } }
s763389607
p00000
u183224403
1542954082
6C#
C#
cs
0Accepted
50
15,772
305
1/1
using System; namespace TestSpace { class Test { static void Main(string[] args) { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } } }
s366978841
p00000
u911162780
1541464471
6C#
C#
cs
0Accepted
30
15,796
345
1/1
using System; namespace Volume0_0000 { class Program { static void Main(string[] args) { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine(i + "x" + j + "=" + (i * j).ToString()); } } } } }
s355517150
p00000
u238213175
1540796515
6C#
C#
cs
0Accepted
30
13,704
320
1/1
using System; namespace sample1 { class MainClass { public static void Main(string[] args) { for (int i = 1; i <= 9; i++) { for (int k = 1; k <= 9; k++) { Console.WriteLine(i + "x" + k + "=" + i * k); } } } } }
s032567676
p00000
u047818749
1536983168
6C#
C#
cs
0Accepted
50
15,804
247
1/1
using System; namespace AOJ01 { class Program { static void Main(string[] args) { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine(i + "x" + j + "=" + i * j); } } } } }
s167222845
p00000
u915690485
1529392397
6C#
C#
cs
0Accepted
10
9,056
342
1/1
using System; using System.Linq; class Program { static void Main(string[] args) { var query = from x in Enumerable.Range(1, 9) from y in Enumerable.Range(1, 9) select x + "x" + y + "=" + (x * y).ToString(); foreach (var z in query) Console.WriteLine(z); } }
s954556082
p00000
u624226399
1485957880
6C#
C#
cs
0Accepted
10
9,328
329
1/1
using System; class MyClass { static void Main(string[] args) { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } }
s906141979
p00000
u204409482
1413085374
6C#
C#
cs
0Accepted
20
5,544
270
1/1
using System; namespace Application { class MainClass { public static void Main (string[] args) { for(int i=1; i<10; i++) { for(int j=1; j<10; j++) { Console.WriteLine ("{0}x{1}={2}",i,j,i*j); } } } } }
s595579383
p00000
u288689445
1390048933
6C#
C#
cs
0Accepted
20
5,592
232
1/1
<?php for($i=1;$i<10;$i++){ for($j=1;$j<10;$j++){ echo $i."x".$j."=".$i*$j."\n"; } }
s868461921
p00000
u344155612
1405702984
10PHP
PHP
php
0Accepted
0
6,484
84
1/1
<?php for($i = 1; $i < 10; $i++){ for($j = 1; $j < 10; $j++){ echo $i . "x" . $j . "=" . $i * $j . "\n"; } }
s200060233
p00000
u642549559
1410475588
10PHP
PHP
php
0Accepted
10
6,484
124
1/1
<?php for ($i=1; $i <= 9; $i++) { for ($j=1; $j <= 9; $j++) { $ans = $i*$j; echo $i.'x'.$j.'='.$ans."\n"; } }
s143287318
p00000
u679333515
1414219451
10PHP
PHP
php
0Accepted
0
6,484
116
1/1
<?php for($i=1;$i<=9;$i++){ for($j=1;$j<=9;$j++){ echo $i."x".$j."=".$i*$j."\n"; } } ?>
s628030809
p00000
u802954168
1422253869
10PHP
PHP
php
0Accepted
0
6,484
103
1/1
<?php for ( $i=1; $i<10; $i++ ){ for ( $k=1; $k<10; $k++ ){ $calc = $i * $k; echo "${i}x${k}=${calc}\n"; } }
s371134835
p00000
u494858865
1422413223
10PHP
PHP
php
0Accepted
0
6,484
120
1/1
<?php for ($i = 1; $i < 10; $i++) { for ($j = 1; $j < 10; $j++) { printf("%dx%d=%d\n", $i, $j, $i * $j); } }
s540481190
p00000
u133486819
1422846668
10PHP
PHP
php
0Accepted
0
6,512
125
1/1
<?php //fscanf(STDIN,"%d",$r); for($i=1;$i<=9;$i++){ for($j=1;$j<=9;$j++){ print $i."x"; print $j."="; print $i*$j."\n"; } } ?>
s529663089
p00000
u544156467
1424240226
10PHP
PHP
php
0Accepted
0
6,480
151
1/1
<?php for($i=1; $i <= 9; $i++) { for($j=1; $j <= 9; $j++) { $k = $i * $j; echo "{$i}x{$j}=$k\n"; } }
s599697267
p00000
u886766186
1425884202
10PHP
PHP
php
0Accepted
0
6,484
125
1/1
<?php for($i=1;$i<=9;$i++){ for($j=1;$j<=9;$j++){ echo "$i"."x".$j."=".($i*$j)."\n"; } }
s472731999
p00000
u113092011
1434258830
10PHP
PHP
php
0Accepted
0
6,484
104
1/1
<?php for($i=1;$i<10;$i++) { for($j=1;$j<10;$j++) { echo $i."x".$j."=".$i*$j."\n"; } }
s764015289
p00000
u498597466
1434614273
10PHP
PHP
php
0Accepted
0
6,488
90
1/1
<?php for($i=1; $i<10; $i++){ for($j=1; $j<10; $j++){ $result = $i*$j; echo $i."x".$j."=".$result."\n"; } }
s884883375
p00000
u339111739
1434614457
10PHP
PHP
php
0Accepted
0
6,488
107
1/1