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
// QQ.cs // ?????????????????¨?????¨?????????????????°?????? using System; class QQ { 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); } } } }
s583087314
p00000
u792582999
1452319576
6C#
C#
cs
0Accepted
10
8,916
295
1/1
using System; public class Example { public static void Main() { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine(String.Format("{0}x{1}={2}", i, j, i*j)); } } } }
s234653353
p00000
u433116732
1453954887
6C#
C#
cs
0Accepted
10
9,068
259
1/1
using System; class Example { static void Main() { for (int a = 1; a <= 9; a++) { for (int b = 1; b <= 9; b++) { Console.WriteLine(a + "x" + b + "=" + (a * b)); } } } }
s765219305
p00000
u058601748
1453966226
6C#
C#
cs
0Accepted
10
8,952
256
1/1
using System; class Program { 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); } } } }
s668150633
p00000
u525685480
1457587123
6C#
C#
cs
0Accepted
10
8,992
236
1/1
using System; using System.Text; using System.Linq; using System.Collections.Generic; public class my { private static StringBuilder sb = new StringBuilder(); public static void Main() { for(int i = 1; i <= 9; i++) { for(int j = 1; j <= 9; j++) { sb.AppendLine(string.Format("{0}x{1}={2}", i, j, i*j )); } } Console.Write(sb); } private static int CountChar(string s, char c) { return s.Length - s.Replace(c.ToString(), "").Length; } private static void Flush() { Console.Write(sb); sb.Length = 0; } private static void AppendLine(int v) { sb.AppendLine(v.ToString()); } private static void AppendLine(long v) { sb.AppendLine(v.ToString()); } private static void AppendLine(string[] v) { sb.AppendLine(string.Join(" ", v)); } private static void Swap(ref string a, ref string b) { string tmp = a; a = b; b = tmp; } private static void Swap(ref int a, ref int b) { int tmp = a; a = b; b = tmp; } private static int[] GetIntArray() { return Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse); } private static void WriteArray(int[] a) { Console.WriteLine(string.Join(" ", Array.ConvertAll( a, x=>x.ToString() ) ) ); } private static void WriteArray(long[] a) { Console.WriteLine(string.Join(" ", Array.ConvertAll( a, x=>x.ToString() ) ) ); } private static int GetInt() { return int.Parse(Console.ReadLine()); } private static long GetLong() { return long.Parse(Console.ReadLine()); } }
s027225030
p00000
u943018572
1457883117
6C#
C#
cs
0Accepted
10
8,988
1,516
1/1
using System; class Program { static void Main() { for (var i = 1; i <= 9; i++) for (var j = 1; j <= 9; j++) { Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } }
s755717079
p00000
u981139449
1458202171
6C#
C#
cs
0Accepted
10
9,040
186
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using Pair = System.Collections.Generic.KeyValuePair<int, int>; class Program { public Program() { } static void Main(string[] args) { new Program().prog(); } //Scanner cin; const int MOD = 1000000007; const int INF = int.MaxValue; const double EPS = 1e-7; void prog() { //cin = new Scanner(); for (int i = 0; i < 9; i++) { for (int j = 0; j < 9; j++) { Console.WriteLine("{0}x{1}={2}",i+1,j+1,(i+1)*(j+1)); } } } } class Scanner { string[] s; int i; char[] cs = new char[] { ' ' }; public Scanner() { s = new string[0]; i = 0; } public string next() { if (i < s.Length) return s[i++]; string st = Console.ReadLine(); while (st == "") st = Console.ReadLine(); s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries); i = 0; return next(); } public int nextInt() { return int.Parse(next()); } public long nextLong() { return long.Parse(next()); } public double nextDouble() { return double.Parse(next()); } }
s808681019
p00000
u222247064
1458788292
6C#
C#
cs
0Accepted
10
9,112
1,097
1/1
using System; class Shinobu { 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); } } } }
s155065434
p00000
u881668270
1460383843
6C#
C#
cs
0Accepted
10
8,948
200
1/1
public class Hello{ public static void Main(){ // Here your code ! for(int i = 1; i <= 9; i++){ for(int j = 1; j <= 9; j++){ System.Console.WriteLine(i + "x" + j + "=" + i * j); } } } }
s034489160
p00000
u160201875
1460937908
6C#
C#
cs
0Accepted
10
8,952
257
1/1
using System; namespace Ex160424_1{ public class Program{ public static void Main(string[] args){ for(var i = 1; i <= 9; i++){ for(var j = 1; j <= 9; j++){ Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } } } }
s808548829
p00000
u963939724
1461481404
6C#
C#
cs
0Accepted
10
8,764
313
1/1
using System; using System.Collections; using System.Collections.Generic; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ var sb=new StringBuilder(); for(int i=1;i<=9;i++){ for(int j=1;j<=9;j++){ sb.AppendLine(String.Format("{0}x{1}={2}",i,j,i*j)); } } Console.Write(sb.ToString()); } public Sol(){ } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(){return Console.ReadLine().Split(' ');} static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));} static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));} static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));} }
s635948310
p00000
u233309653
1462028754
6C#
C#
cs
0Accepted
10
8,732
986
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.ToString() + "x" + j.ToString() + "=" + (i * j).ToString()); } } } }
s489969638
p00000
u328057732
1462404962
6C#
C#
cs
0Accepted
10
8,904
263
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApp5 { class Program { static void Main(string[] args) { { int a, b; for (a = 1; a <= 9; a++) { for (b = 1; b <= 9; b++) { Console.WriteLine("{0}x{1}={2}", a, b, a * b); } } } } } }
s178051889
p00000
u584110575
1464337992
6C#
C#
cs
0Accepted
10
8,916
505
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); } } }
s771739071
p00000
u146816547
1464727735
6C#
C#
cs
0Accepted
10
9,076
182
1/1
using System; public class Program { 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)); } } } }
s794437103
p00000
u823513038
1465294017
6C#
C#
cs
0Accepted
10
8,956
196
1/1
using System; using System.Collections.Generic; using System.IO; namespace aoj { public class QQ { public static void Main(string[] args) { var sw = new StreamWriter(Console.OpenStandardOutput()){AutoFlush = false}; Console.SetOut(sw); for (var i=1; i < 10; i++) { for(var j=1; j < 10; j++) { Console.WriteLine(i + "x" + j + "=" + i*j); } } Console.Out.Flush(); } } }
s527275508
p00000
u669317819
1465522235
6C#
C#
cs
0Accepted
10
8,928
548
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication32 { class Program { static void Main(string[] args) { for (int c = 1; c <10; c++) { for (int d = 1; d <10; d++) { Console.WriteLine("{0}x{1}={2}", c, d, c * d); } } } } }
s642094153
p00000
u571385309
1467695313
6C#
C#
cs
0Accepted
10
9,104
520
1/1
using System; namespace practise { class Program { static void Main(string[] args) { int i = 1; int j = 1; while(true) { int ans = i * j; Console.WriteLine("{0}x{1}={2}", i, j, ans); j++; if (j > 9) { i++; j = 1; } if (i > 9) { break; } } } } }
s964379896
p00000
u956256746
1467962320
6C#
C#
cs
0Accepted
10
8,992
535
1/1
namespace mul { class Program { static void Main(string[] args) { for (int cntX = 1; cntX < 10; cntX++) { for (int cntY = 1; cntY < 10; cntY++) System.Console.WriteLine("{0}x{1}={2}", cntX, cntY, cntX * cntY); } } } }
s690203522
p00000
u325507847
1468805074
6C#
C#
cs
0Accepted
10
9,032
325
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); } } }
s723024679
p00000
u146816547
1468966515
6C#
C#
cs
0Accepted
10
8,968
185
1/1
using System; class AOJ{ 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); } } }
s722119879
p00000
u146816547
1468966535
6C#
C#
cs
0Accepted
0
8,916
178
1/1
using System; class Program { static void Main() { int i, j; for (i = 1; i < 10; i++){ for (j = 1; j < 10; j++){ Console.WriteLine(i+"x"+j+"="+i*j); } } } }
s045476992
p00000
u811773570
1469577805
6C#
C#
cs
0Accepted
10
9,068
198
1/1
using System; class Sample { 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)); } } } }
s327568654
p00000
u950683603
1470124285
6C#
C#
cs
0Accepted
0
9,052
198
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { StringBuilder sb = new StringBuilder(); for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { sb.AppendLine(i + "x" + j + "=" + i * j); } } Console.Write(sb); } } }
s032362367
p00000
u701413552
1470508366
6C#
C#
cs
0Accepted
10
8,936
506
1/1
using System; class Sample{ 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)); } } }
s959652525
p00000
u950683603
1470576381
6C#
C#
cs
0Accepted
10
9,076
202
1/1
using System; class Sample { 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)); } } } }
s243929255
p00000
u950683603
1470576478
6C#
C#
cs
0Accepted
10
9,116
254
1/1
using System; namespace _0000_QQ { public static 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); } } } } }
s632735815
p00000
u515598833
1471449297
6C#
C#
cs
0Accepted
10
9,012
241
1/1
using System; namespace Solution { class Solution { public static void Main(string[] args){ for(int i = 1; i <= 9; i++) { for(int j = 1; j <= 9; j++) { System.Console.WriteLine("{0}x{1}={2}", i, j, i*j); } } } } }
s520974843
p00000
u092047183
1471584357
6C#
C#
cs
0Accepted
10
9,084
313
1/1
using System; namespace AIZUJudge { class ququ { static void Main(string[] args) { int ququ_upper = 9; for (int i = 1; i <= ququ_upper; i++) { for (int j = 1; j <= ququ_upper; j++) { Console.WriteLine(i+"x"+j+"="+i*j); } } } } }
s019915756
p00000
u130855721
1473136652
6C#
C#
cs
0Accepted
10
9,128
341
1/1
using System; class aaaa { static void Main(String[] args){ for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++){ int ans = i*j; Console.WriteLine("{0}x{1}={2}",i,j,ans); } } } };
s245189279
p00000
u470826519
1474111928
6C#
C#
cs
0Accepted
10
9,080
256
1/1
using System; class QQ { static void Main() { int i , j = 0; for( i = 1; i <= 9; i++) { for (j = 1; j <= 9; j++) { Console.WriteLine(i + "x" + j + "=" +(i*j)); } } } }
s366407228
p00000
u602903519
1474770106
6C#
C#
cs
0Accepted
10
8,888
278
1/1
using System; class Program { 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); } } } }
s091292446
p00000
u953079421
1475219836
6C#
C#
cs
0Accepted
10
8,864
251
1/1
using System; using System.Linq; class Program { 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); } } } }
s130298731
p00000
u563127060
1476443034
6C#
C#
cs
0Accepted
10
9,020
274
1/1
using System; class QQ { 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); } } }
s143155594
p00000
u146816547
1476443942
6C#
C#
cs
0Accepted
0
9,036
225
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; class QQ { public static void Main(String[] args) { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine(String.Format("{0}x{1}={2}",i,j,i*j)); } } } }
s530965384
p00000
u247788765
1478314336
6C#
C#
cs
0Accepted
10
9,080
353
1/1
using System; using System.Linq; using System.IO; using System.Text; using System.Collections; using System.Collections.Generic; class Program{ static void Main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { Console.WriteLine(string.Format("{0}x{1}={2}", i, j, i * j)); } } } }
s625872629
p00000
u823517752
1478597392
6C#
C#
cs
0Accepted
10
9,012
381
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication9 { class Program { static void Main(string[] args) { for (int intNumber = 1; intNumber < 10; intNumber++) { for (int intNumber2 = 1; intNumber2 < 10; intNumber2++) { Console.WriteLine(intNumber.ToString() + "x" + intNumber2.ToString() + "=" + intNumber * intNumber2); } } Console.ReadLine(); } } }
s158064778
p00000
u122956202
1479154160
6C#
C#
cs
0Accepted
10
9,096
565
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(i + "x" + j + "=" + i * j); } } } }
s745183985
p00000
u823513038
1479291787
6C#
C#
cs
0Accepted
10
9,076
193
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(String.Format("{0}x{1}={2}", i, j, i * j)); } } } }
s740065026
p00000
u237935801
1479448455
6C#
C#
cs
0Accepted
10
9,040
272
1/1
using System; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { for (int i = 1; i < 10; i++) { for(int w=1;w<10;w++) { Console.WriteLine(i + "x" + w + "=" + i * w); } } } } }
s823905516
p00000
u412356196
1479528526
6C#
C#
cs
0Accepted
10
8,960
352
1/1
using System; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { for (int i = 1; i < 10; i++) { for(int w=1;w<10;w++) { Console.WriteLine(i + "x" + w + "=" + i * w); } } } } }
s406706773
p00000
u412356196
1479528557
6C#
C#
cs
0Accepted
10
9,028
352
1/1
using System; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { for (int i = 1; i < 10; i++) { for(int w=1;w<10;w++) { Console.WriteLine(i + "x" + w + "=" + i * w); } } } } }
s405161730
p00000
u412356196
1479528562
6C#
C#
cs
0Accepted
10
8,956
352
1/1
using System; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { for (int i = 1; i < 10; i++) { for(int w=1;w<10;w++) { Console.WriteLine(i + "x" + w + "=" + i * w); } } } } }
s744366466
p00000
u412356196
1479528712
6C#
C#
cs
0Accepted
0
9,100
352
1/1
using System; namespace a { class Program { static void Main(string[] args) { for (int i = 1; i <= 9; i++) { for (int I = 1; I <= 9; I++) { Console.WriteLine(i.ToString()+"x"+I.ToString()+"="+(i*I).ToString()); } } Console.ReadLine(); } } }
s896226118
p00000
u100875060
1479612634
6C#
C#
cs
0Accepted
10
9,060
393
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(i+"x"+j+"="+i*j); } } } }
s341600547
p00000
u988213374
1479624289
6C#
C#
cs
0Accepted
0
9,068
238
1/1
using System; 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.ToString()+"x"+j.ToString()+"="+(i*j).ToString()); } } } } }
s464168308
p00000
u921312486
1480257892
6C#
C#
cs
0Accepted
10
8,896
379
1/1
#pragma warning disable using System.Collections.Generic; using System.IO; using System.Linq; using System; class E { static void Main() { new J(); } } class J { int F() { return int.Parse(Console.ReadLine()); } int[] G() { return Console.ReadLine().Split().Select(_ => int.Parse(_)).ToArray(); } public J() { Console.SetOut(new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }); for (var x = 1; x < 10; x++) for (var y = 1; y < 10; y++) Console.WriteLine("{0}x{1}={2}", x, y, x * y); Console.Out.Flush(); } }
s426108140
p00000
u398205595
1480399721
6C#
C#
cs
0Accepted
10
9,260
543
1/1
using System; namespace Volume0_0000_QQ { 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); } } }
s619347953
p00000
u011810163
1480439849
6C#
C#
cs
0Accepted
10
8,892
298
1/1
using System; class Program{ static void Main(){ int i = 0; while(i++ < 9){ int j = 0; while(j++ < 9){ Console.WriteLine(i + "x" + j + "=" + i*j); } } } }
s699390358
p00000
u845643816
1480577823
6C#
C#
cs
0Accepted
10
8,776
176
1/1
using System; class Program{ static void Main(){ int i = 0; while(i++ < 9){ int j = 0; while(j++ < 9){ Console.WriteLine(i + "x" + j + "=" + i*j); } } } }
s016009541
p00000
u845643816
1480646691
6C#
C#
cs
0Accepted
10
8,908
240
1/1
using System; class Program{ static void Main(){ int i = 0; while(++i <= 9){ int j = 0; while(++j <= 9){ Console.WriteLine(i + "x" + j + "=" + i*j); } } } }
s848371114
p00000
u845643816
1480646877
6C#
C#
cs
0Accepted
10
8,924
242
1/1
using System; class Program{ static void Main(){ int i = 0; while(i++ < 9){ int j = 0; while(j++ < 9) Console.WriteLine(i + "x" + j + "=" + i*j); } } }
s811267108
p00000
u845643816
1480647067
6C#
C#
cs
0Accepted
10
8,920
225
1/1
using System; class Program{ static void Main(){ int i = 0; while(i++ < 9){ int j = 0; while(j++ < 9) Console.WriteLine(i + "x" + j + "=" + i*j); } } }
s092083603
p00000
u845643816
1480647146
6C#
C#
cs
0Accepted
10
8,960
209
1/1
using System; class Program{ static void Main(){ int i = 0, j; while(i++ < 9){ j = 0; while(j++ < 9) Console.WriteLine(i + "x" + j + "=" + i*j); } } }
s990771384
p00000
u845643816
1480647231
6C#
C#
cs
0Accepted
10
8,980
208
1/1
using System; public class Test { public static void Main() { for (int i = 1; i < 10; i++) for (int j = 1; j < 10; j++) { Console.WriteLine(string.Format("{0}x{1}={2}", i, j, i * j)); } } }
s381555825
p00000
u649517740
1481135939
6C#
C#
cs
0Accepted
10
8,908
208
1/1
using System; namespace AIZU_Cs_ { class Program { static void Main(string[] args) { int i, j; for (i = 1; i <= 9; i++) for (j = 1; j <= 9; j++) Console.WriteLine(i + "x" + j + "=" + i * j); } } }
s700229062
p00000
u078042885
1481138970
6C#
C#
cs
0Accepted
10
9,000
293
1/1
using System; public class Program { public static void Main() { for (int parent = 1; parent <= 9; parent++) { for (int child = 1; child <= 9; child++) { Console.WriteLine("{0}x{1}={2}", parent, child, parent*child); } } } }
s941365172
p00000
u798317717
1481249020
6C#
C#
cs
0Accepted
10
8,852
256
1/1
using System; using System.Collections.Generic; using System.Linq; 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); } } } }
s115364689
p00000
u045912041
1481354188
6C#
C#
cs
0Accepted
0
8,768
297
1/1
using System; 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("{0}x{1}={2}", i, j, i * j); } } Console.ReadKey(); } } }
s395962960
p00000
u131518091
1482938317
6C#
C#
cs
0Accepted
10
8,880
369
1/1
using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; using System.IO; class Program { static private Magatro M = new Magatro(); static private void Main(string[]args) { M.Scan(); M.Solve(); } } public class Scanner { private string[] S; private int Index; private char Separator; public Scanner(char separator = ' ') { Index = 0; Separator = separator; S = new string[0]; } private string[] Line() { return Console.ReadLine().Split(Separator); } public string Next() { string result; if (Index >= S.Length) { S = Line(); Index = 0; } result = S[Index]; Index++; return result; } public int NextInt() { return int.Parse(Next()); } public double NextDouble() { return double.Parse(Next()); } public long NextLong() { return long.Parse(Next()); } } public class Magatro { public void Scan() { } public void Solve() { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine(Anser(i, j)); } } } private string Anser(int i,int j) { return string.Format("{0}x{1}={2}", i,j,i*j); } }
s606015236
p00000
u328057732
1484291080
6C#
C#
cs
0Accepted
10
8,972
1,516
1/1
using System; class Program { 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); } } } }
s332042639
p00000
u828235594
1484641907
6C#
C#
cs
0Accepted
10
8,964
252
1/1
using System; class main{ public static void Main(String[] a){ int k; for(int i=1;i<10;i++){ for(int j=1;j<10;j++){ k=i*j; Console.WriteLine(""+i+"x"+j+"="+k); } } } }
s676050760
p00000
u235485197
1485349862
6C#
C#
cs
0Accepted
10
8,976
169
1/1
using System; namespace _0000 { class Program { static int Main ( string[] args ) { for (int lp = 1; lp <= 9; lp++) { for (int lp2 = 1; lp2 <= 9; lp2++) { Console.WriteLine (lp + "x" + lp2 + "=" + (lp * lp2)); } } return 0; } } }
s621862362
p00000
u808429775
1486569471
6C#
C#
cs
0Accepted
0
8,920
271
1/1
using System; class P { public static void Main() { int a; int b; int c = 0; for (a = 1; a <= 9; a++) { for (b = 1; b <= 9; b++) { c = a * b; Console.WriteLine(a + "x" + b + "=" + c); } }} }
s359608805
p00000
u886759301
1487584574
6C#
C#
cs
0Accepted
10
9,076
340
1/1
public class QQ { static void Main(string[] args) { for (int first_num = 1; first_num <= 9; first_num++) { for (int second_num = 1; second_num <= 9; second_num++) { System.Console.WriteLine("{0}x{1}={2}", first_num, second_num, first_num*second_num); } } } }
s813597904
p00000
u857303486
1488040951
6C#
C#
cs
0Accepted
10
9,048
290
1/1
public class Hello{ public static void Main(){ // Here your code ! for (int i=1; i<=9; i++){ for (int j=1; j<=9; j++){ System.Console.WriteLine(i.ToString() + "x" + j.ToString() + "=" + i*j); } } } }
s500205466
p00000
u301461168
1489852426
6C#
C#
cs
0Accepted
0
9,028
271
1/1
using System; class Program{ static void Main(string[] args){ 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); } } } }
s020933915
p00000
u886119481
1489970433
6C#
C#
cs
0Accepted
10
9,008
263
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(i + "x" + j + "=" + i * j); } } } }
s896962244
p00000
u221520432
1491054860
6C#
C#
cs
0Accepted
10
8,916
302
1/1
using System; class C { 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); } } } }
s335037189
p00000
u546285759
1491631912
6C#
C#
cs
0Accepted
10
9,056
194
1/1
using System; public class Program{ public static void Main(){ //????????????????????????????¨???° int x = 0; int y = 0; int kai = 0; for(x=1 ;x<10;x++){ for(y=1 ;y<10;y++){ kai = x * y; Console.WriteLine(x + "x" + y + "=" + kai); } } } }
s986033448
p00000
u710016128
1491721354
6C#
C#
cs
0Accepted
10
9,060
343
1/1
using System; namespace At { 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); } } } } }
s147652110
p00000
u030680026
1492065881
6C#
C#
cs
0Accepted
10
8,860
335
1/1
using System; namespace Test06 { 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); } } } } }
s829378855
p00000
u617272666
1492938438
6C#
C#
cs
0Accepted
10
8,920
246
1/1
using System; using System.Linq; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { foreach (int i in Enumerable.Range(1, 9)) { foreach (int j in Enumerable.Range(1, 9)) { Console.WriteLine(i + "x" + j + "=" + i * j); } } } } }
s591608452
p00000
u638089854
1493027833
6C#
C#
cs
0Accepted
0
9,264
329
1/1
using System; namespace QQ { 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); } } } } }
s368661963
p00000
u115370563
1493460494
6C#
C#
cs
0Accepted
10
9,100
345
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace AthleteProgramming { class Program { 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); } } } } }
s645616021
p00000
u222195708
1493555871
6C#
C#
cs
0Accepted
10
8,988
406
1/1
using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { for(int A = 1; A < 10; A++) for (int B = 1; B < 10; B++) Console.WriteLine(A+"x"+B +"="+A*B); Console.ReadKey(); } } }
s955146055
p00000
u026309056
1493620103
6C#
C#
cs
0Accepted
10
8,944
324
1/1
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApp6 { 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); } } } }
s967667849
p00000
u892431776
1493632932
6C#
C#
cs
0Accepted
10
9,036
374
1/1
using System; using System.Collections.Generic; class Program { static int Main(string[] args) { for (int x = 1; x <= 9; x++) { for (int y = 1; y <= 9; y++) { Console.WriteLine(string.Format("{0}x{1}={2}", x, y, x * y)); } } return 0; } }
s584026093
p00000
u372714848
1494983178
6C#
C#
cs
0Accepted
10
9,060
313
1/1
public class Hello{ public static void Main(){ // Here your code ! for(int i =1;i<=9; i++){ for(int j =1;j<=9; j++){ System.Console.Write("{1}x{0}={2}\n", j,i,i*j); } } }}
s995875189
p00000
u886119481
1495188131
6C#
C#
cs
0Accepted
10
8,904
258
1/1
using System; using System.IO; using System.Linq; using System.Collections.Generic; public class Program { public void Proc() { System.Text.StringBuilder ans = new System.Text.StringBuilder(); for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { ans.AppendLine(i + "x" + j + "=" + (i * j)); } } Console.Write(ans.ToString()); } public class Reader { private static StringReader sr; public static bool IsDebug = false; public static string ReadLine() { if (IsDebug) { if (sr == null) { sr = new StringReader(InputText.Trim()); } return sr.ReadLine(); } else { return Console.ReadLine(); } } private static string InputText = @" 6 )))()) "; } public static void Main(string[] args) { #if DEBUG Reader.IsDebug = true; #endif Program prg = new Program(); prg.Proc(); } }
s823726513
p00000
u793403541
1497128012
6C#
C#
cs
0Accepted
10
8,872
939
1/1
using System; public class a { 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); } } } }
s588067743
p00000
u862731798
1497945896
6C#
C#
cs
0Accepted
10
8,792
249
1/1
using System; namespace V0001 { class Program { static int Main(string[] args) { for(var i = 1; i < 10; i++) { for(var j = 1; j < 10; j++) { var x = i * j; Console.WriteLine(String.Format("{0}x{1}={2}", i,j,x)); } } return 0; } } }
s647765376
p00000
u193453446
1500625015
6C#
C#
cs
0Accepted
10
8,976
404
1/1
using System; class program { static void Main() { for(int i = 1; i < 10; i++) { for (int j=1; j< 10;j++) { int multip = i * j; Console.WriteLine("{0}x{1}={2}", i, j, multip); } } } }
s090140109
p00000
u436439931
1500700379
6C#
C#
cs
0Accepted
10
9,080
288
1/1
using System; public class hello { public 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); } }
s190912032
p00000
u682603602
1501631947
6C#
C#
cs
0Accepted
10
8,960
217
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("{0}x{1}={2}", i, j, i * j); } } } }
s643015867
p00000
u442935354
1503403181
6C#
C#
cs
0Accepted
10
8,964
256
1/1
using System; namespace QQ { class Program { static void Main(string[] args) { for (var i = 1; i < 10; i ++) for (var j = 1; j < 10; j++) Console.WriteLine("{0}x{1}={2}", i, j, i * j); } } }
s431624809
p00000
u295404099
1507719988
6C#
C#
cs
0Accepted
10
9,004
275
1/1
using System; namespace QQ { class Program { static void Main(string[] args) { var str = @"1x1=1 1x2=2 1x3=3 1x4=4 1x5=5 1x6=6 1x7=7 1x8=8 1x9=9 2x1=2 2x2=4 2x3=6 2x4=8 2x5=10 2x6=12 2x7=14 2x8=16 2x9=18 3x1=3 3x2=6 3x3=9 3x4=12 3x5=15 3x6=18 3x7=21 3x8=24 3x9=27 4x1=4 4x2=8 4x3=12 4x4=16 4x5=20 4x6=24 4x7=28 4x8=32 4x9=36 5x1=5 5x2=10 5x3=15 5x4=20 5x5=25 5x6=30 5x7=35 5x8=40 5x9=45 6x1=6 6x2=12 6x3=18 6x4=24 6x5=30 6x6=36 6x7=42 6x8=48 6x9=54 7x1=7 7x2=14 7x3=21 7x4=28 7x5=35 7x6=42 7x7=49 7x8=56 7x9=63 8x1=8 8x2=16 8x3=24 8x4=32 8x5=40 8x6=48 8x7=56 8x8=64 8x9=72 9x1=9 9x2=18 9x3=27 9x4=36 9x5=45 9x6=54 9x7=63 9x8=72 9x9=81 "; Console.Write(str); } } }
s858419498
p00000
u295404099
1507720089
6C#
C#
cs
0Accepted
0
8,680
725
1/1
using System; 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); } Console.Read(); } } }
s032648853
p00000
u115538167
1508166727
6C#
C#
cs
0Accepted
10
9,056
336
1/1
using System; using System.Collections.Generic; class Program { static void Main(string[] args) { //List<int> a = new List<int>(); //List<int> b = new List<int>(); //long[] a = new long[n]; //string[] s = Console.ReadLine().Split(' '); // int a = int.Parse(Console.ReadLine()); for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { Console.WriteLine("{0}x{1}={2}",i,j,i*j); } } //Console.WriteLine(""); } }
s663896839
p00000
u292492602
1508224485
6C#
C#
cs
0Accepted
10
9,012
508
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("{0}x{1}={2}", i, j, i * j); } } } }
s141912916
p00000
u919786767
1508933401
6C#
C#
cs
0Accepted
10
8,956
256
1/1
using System; 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); } } } }
s190775038
p00000
u375736190
1508941878
6C#
C#
cs
0Accepted
10
9,076
315
1/1
using System; namespace ConsoleApp8 { class Program { static void Main(string[] args) { for( var i = 1; i <= 9; i++) { for( var j = 1; j <= 9; j++) { Console.WriteLine (i+"x"+j +"=" + i*j); } } Console.ReadLine (); } } }
s471059412
p00000
u791574163
1515422434
6C#
C#
cs
0Accepted
10
9,052
288
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("{0}x{1}={2}", i, j, i * j); } } } }
s173115087
p00000
u512723869
1520039417
6C#
C#
cs
0Accepted
10
9,128
233
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); } } } }
s314254338
p00000
u873749699
1521520310
6C#
C#
cs
0Accepted
10
9,084
301
1/1
public class Hello{ public static void Main(){ for(int i=1;i<10;i++) x1_9(i); } public static void x1_9(int x){ for(int i=1;i<10;i++) System.Console.WriteLine(x + "x" + i + "=" + (x*i)); } }
s214780971
p00000
u864189958
1524729220
6C#
C#
cs
0Accepted
10
9,032
224
1/1
using System; using System.Text; namespace Solution { class Solution { static void Main(string[] args) { StringBuilder sb = new StringBuilder(); for(int i = 1; i <= 9; i++) { for(int j = 1; j <= 9; j++) { sb.AppendLine(string.Format("{0}x{1}={2}", i, j, i * j)); } } Console.WriteLine(sb.ToString().Trim()); } } }
s884564512
p00000
u999404807
1528749838
6C#
C#
cs
0Accepted
10
9,008
502
1/1
using System; class Program { static void Main() { for (int x=1; x<=9; ++x) { for (int y=1; y<=9; ++y) { Console.WriteLine("{0}x{1}={2}", x, y, x*y); } } } }
s683747483
p00000
u864813553
1529210081
6C#
C#
cs
0Accepted
10
9,012
247
1/1
using System; using System.Linq; public class Test { 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); } } } } }
s304386599
p00000
u100875060
1529392887
6C#
C#
cs
0Accepted
10
9,052
195
1/1
using System; using System.Linq; 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); } } Console.ReadLine(); } }
s070320237
p00000
u209275942
1529393046
6C#
C#
cs
0Accepted
10
9,160
373
1/1
using System; class _0000 { 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); } } } }
s484910939
p00000
u280402997
1336539997
6C#
C#
cs
0Accepted
20
5,552
174
1/1