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
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i * j); } } }
s554950692
p00000
u706566315
1540908314
8Rust
Rust
rs
0Accepted
0
5,004
124
1/1
/// 0000: QQ fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i * j); } } }
s555203498
p00000
u759934006
1513417513
8Rust
Rust
rs
0Accepted
0
5,020
136
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i * j) } } }
s309783173
p00000
u233505136
1516826051
8Rust
Rust
rs
0Accepted
0
5,004
123
1/1
fn main() { for a in 1..10 { for b in 1..10 { println!("{}x{}={}", a, b, a * b) } } }
s184977351
p00000
u191088660
1517740150
8Rust
Rust
rs
0Accepted
0
5,004
122
1/1
fn main(){ let n=10; for i in 1..n{ for j in 1..n{ println!("{}x{}={}",i,j,i*j); } } }
s171709297
p00000
u444102531
1518453505
8Rust
Rust
rs
0Accepted
0
5,008
108
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i * j); } } }
s886000362
p00000
u676220309
1525591225
8Rust
Rust
rs
0Accepted
0
5,004
124
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}",i,j,i*j); } } }
s290059839
p00000
u324833668
1526560349
8Rust
Rust
rs
0Accepted
0
5,008
118
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i * j); } } }
s814560710
p00000
u033839505
1596382719
8Rust
Rust
rs
0Accepted
0
5,004
124
1/1
fn main(){ for x in 1..10 { for y in 1..10 { println!("{}x{}={}", x, y, x * y) } } }
s475017932
p00000
u999209245
1592055426
8Rust
Rust
rs
0Accepted
0
5,004
121
1/1
fn main() { let mut i = 1; let mut j = 1; let mut done = false; while !(i == 10) { while !(j == 10) { println!("{}x{}={}", i, j, i * j); j += 1; } j = 1; i += 1; } }
s375169621
p00000
u820252385
1592055423
8Rust
Rust
rs
0Accepted
0
5,004
206
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i*j); } } }
s238697292
p00000
u857051250
1592055416
8Rust
Rust
rs
0Accepted
0
5,004
104
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i*j); } } }
s347067916
p00000
u161936653
1587309693
8Rust
Rust
rs
0Accepted
0
5,004
121
1/1
fn main() { for i in 1..10{ for j in 1..10{ println!("{}x{}={}", i, j, i*j) } } }
s907460582
p00000
u247468484
1585112944
8Rust
Rust
rs
0Accepted
0
5,004
119
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i * j); } } }
s342746984
p00000
u099022684
1573539978
8Rust
Rust
rs
0Accepted
0
5,004
123
1/1
fn main() { for x in 1..10 { for y in 1..10 { println!("{}x{}={}", x, y, x * y); } } }
s491405799
p00000
u125184363
1564789569
8Rust
Rust
rs
0Accepted
0
5,004
124
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}",i,j,i*j) } } }
s057012733
p00000
u133119785
1564658884
8Rust
Rust
rs
0Accepted
0
5,008
118
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i * j); } } }
s193339721
p00000
u403446452
1551080818
8Rust
Rust
rs
0Accepted
0
5,008
123
1/1
fn main() { for i in 1..10 { for i2 in 1..10 { println!("{}x{}={}", i, i2, i * i2); } } }
s110536997
p00000
u842613099
1550135630
8Rust
Rust
rs
0Accepted
0
5,004
127
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i*j); } } }
s821054376
p00000
u292243014
1544939990
8Rust
Rust
rs
0Accepted
0
5,004
122
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i*j); } } }
s641665583
p00000
u952759940
1544359887
8Rust
Rust
rs
0Accepted
0
5,008
157
1/1
fn main(){ for i in 1..10 { for j in 1..10{ println!("{}x{}={}",i, j, i*j); } } }
s605590034
p00000
u873140924
1539093910
8Rust
Rust
rs
0Accepted
0
5,004
102
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}", i, j, i * j); } } }
s011142908
p00000
u550895675
1537585507
8Rust
Rust
rs
0Accepted
0
5,004
123
1/1
fn main() { for i in 1..10 { for j in 1..10 { println!("{}x{}={}",i,j,i*j); } } }
s246974735
p00000
u319725914
1533884072
8Rust
Rust
rs
0Accepted
0
1,016
119
1/1
for (var i=1; i<10; i++) { for (var j=1; j<10; j++) { console.log(i + 'x' + j + '=' + i*j) } }
s094341232
p00000
u158509913
1534832130
9JavaScript
JavaScript
js
0Accepted
80
15,356
110
1/1
for(i=1;i<10;i++){ for(j=1;j<10;j++){ console.log(i+"x"+j+"="+i*j); } }
s723230027
p00000
u344155612
1405701793
9JavaScript
JavaScript
js
0Accepted
10
7,636
77
1/1
for(i=1;i<10;i++){ for(j=1;j<10;j++){ console.log(i+"x"+j+"="+i*j); } }
s167327616
p00000
u344155612
1405702549
9JavaScript
JavaScript
js
0Accepted
20
7,644
79
1/1
for(var i=1; i < 10; i++){ for(var j=1; j < 10; j++){ console.log("%dx%d=%d",i,j,i*j) } }
s639179412
p00000
u759934006
1407336594
9JavaScript
JavaScript
js
0Accepted
20
7,640
89
1/1
for(var i = 1; i < 10; i++){ for(var j = 1; j < 10; j++){ console.log(i + 'x' + j + '=' + i * j); } }
s298557331
p00000
u095377734
1408010027
9JavaScript
JavaScript
js
0Accepted
20
7,640
109
1/1
// Generated by dart2js, the Dart to JavaScript compiler version: 1.7.2. // The code supports the following hooks: // dartPrint(message): // if this function is defined it is called instead of the Dart [print] // method. // // dartMainRunner(main, args): // if this function is defined, the Dart [main] method will not be invoked // directly. Instead, a closure that will invoke [main], and its arguments // [args] is passed to [dartMainRunner]. if (typeof($dart_deferred_initializers) === "undefined") $dart_deferred_initializers = Object.create(null); (function($) { function dart() { this.x = 0; delete this.x; } var A = new dart; var B = new dart; var C = new dart; var D = new dart; var E = new dart; var F = new dart; var G = new dart; var H = new dart; var J = new dart; var K = new dart; var L = new dart; var M = new dart; var N = new dart; var O = new dart; var P = new dart; var Q = new dart; var R = new dart; var S = new dart; var T = new dart; var U = new dart; var V = new dart; var W = new dart; var X = new dart; var Y = new dart; var Z = new dart; function Isolate() {} init(); $ = Isolate.$isolateProperties; (function(reflectionData) { "use strict"; function map(x) { x = Object.create(null); x.x = 0; delete x.x; return x; } function processStatics(descriptor) { for (var property in descriptor) { if (!hasOwnProperty.call(descriptor, property)) continue; if (property === "^") continue; var element = descriptor[property]; var firstChar = property.substring(0, 1); var previousProperty; if (firstChar === "+") { mangledGlobalNames[previousProperty] = property.substring(1); var flag = descriptor[property]; if (flag > 0) descriptor[previousProperty].$reflectable = flag; if (element && element.length) init.typeInformation[previousProperty] = element; } else if (firstChar === "@") { property = property.substring(1); $[property]["@"] = element; } else if (firstChar === "*") { globalObject[previousProperty].$defaultValues = element; var optionalMethods = descriptor.$methodsWithOptionalArguments; if (!optionalMethods) { descriptor.$methodsWithOptionalArguments = optionalMethods = {}; } optionalMethods[property] = previousProperty; } else if (typeof element === "function") { globalObject[previousProperty = property] = element; functions.push(property); init.globalFunctions[property] = element; } else if (element.constructor === Array) { addStubs(globalObject, element, property, true, descriptor, functions); } else { previousProperty = property; var newDesc = {}; var previousProp; for (var prop in element) { if (!hasOwnProperty.call(element, prop)) continue; firstChar = prop.substring(0, 1); if (prop === "static") { processStatics(init.statics[property] = element[prop]); } else if (firstChar === "+") { mangledNames[previousProp] = prop.substring(1); var flag = element[prop]; if (flag > 0) element[previousProp].$reflectable = flag; } else if (firstChar === "@" && prop !== "@") { newDesc[prop.substring(1)]["@"] = element[prop]; } else if (firstChar === "*") { newDesc[previousProp].$defaultValues = element[prop]; var optionalMethods = newDesc.$methodsWithOptionalArguments; if (!optionalMethods) { newDesc.$methodsWithOptionalArguments = optionalMethods = {}; } optionalMethods[prop] = previousProp; } else { var elem = element[prop]; if (prop !== "^" && elem != null && elem.constructor === Array && prop !== "<>") { addStubs(newDesc, elem, prop, false, element, []); } else { newDesc[previousProp = prop] = elem; } } } $$[property] = [globalObject, newDesc]; classes.push(property); } } } function addStubs(descriptor, array, name, isStatic, originalDescriptor, functions) { var f, funcs = [originalDescriptor[name] = descriptor[name] = f = array[0]]; f.$stubName = name; functions.push(name); for (var index = 0; index < array.length; index += 2) { f = array[index + 1]; if (typeof f != "function") break; f.$stubName = array[index + 2]; funcs.push(f); if (f.$stubName) { originalDescriptor[f.$stubName] = descriptor[f.$stubName] = f; functions.push(f.$stubName); } } for (var i = 0; i < funcs.length; index++, i++) { funcs[i].$callName = array[index + 1]; } var getterStubName = array[++index]; array = array.slice(++index); var requiredParameterInfo = array[0]; var requiredParameterCount = requiredParameterInfo >> 1; var isAccessor = (requiredParameterInfo & 1) === 1; var isSetter = requiredParameterInfo === 3; var isGetter = requiredParameterInfo === 1; var optionalParameterInfo = array[1]; var optionalParameterCount = optionalParameterInfo >> 1; var optionalParametersAreNamed = (optionalParameterInfo & 1) === 1; var isIntercepted = requiredParameterCount + optionalParameterCount != funcs[0].length; var functionTypeIndex = array[2]; var unmangledNameIndex = 2 * optionalParameterCount + requiredParameterCount + 3; var isReflectable = array.length > unmangledNameIndex; if (getterStubName) { f = tearOff(funcs, array, isStatic, name, isIntercepted); descriptor[name].$getter = f; f.$getterStub = true; if (isStatic) init.globalFunctions[name] = f; originalDescriptor[getterStubName] = descriptor[getterStubName] = f; funcs.push(f); if (getterStubName) functions.push(getterStubName); f.$stubName = getterStubName; f.$callName = null; if (isIntercepted) init.interceptedNames[getterStubName] = true; } if (isReflectable) { for (var i = 0; i < funcs.length; i++) { funcs[i].$reflectable = 1; funcs[i].$reflectionInfo = array; } var mangledNames = isStatic ? init.mangledGlobalNames : init.mangledNames; var unmangledName = array[unmangledNameIndex]; var reflectionName = unmangledName; if (getterStubName) mangledNames[getterStubName] = reflectionName; if (isSetter) { reflectionName += "="; } else if (!isGetter) { reflectionName += ":" + requiredParameterCount + ":" + optionalParameterCount; } mangledNames[name] = reflectionName; funcs[0].$reflectionName = reflectionName; funcs[0].$metadataIndex = unmangledNameIndex + 1; if (optionalParameterCount) descriptor[unmangledName + "*"] = funcs[0]; } } function tearOffGetterNoCsp(funcs, reflectionInfo, name, isIntercepted) { return isIntercepted ? new Function("funcs", "reflectionInfo", "name", "H", "c", "return function tearOff_" + name + functionCounter++ + "(x) {" + "if (c === null) c = H.closureFromTearOff(" + "this, funcs, reflectionInfo, false, [x], name);" + "return new c(this, funcs[0], x, name);" + "}")(funcs, reflectionInfo, name, H, null) : new Function("funcs", "reflectionInfo", "name", "H", "c", "return function tearOff_" + name + functionCounter++ + "() {" + "if (c === null) c = H.closureFromTearOff(" + "this, funcs, reflectionInfo, false, [], name);" + "return new c(this, funcs[0], null, name);" + "}")(funcs, reflectionInfo, name, H, null); } function tearOffGetterCsp(funcs, reflectionInfo, name, isIntercepted) { var cache = null; return isIntercepted ? function(x) { if (cache === null) cache = H.closureFromTearOff(this, funcs, reflectionInfo, false, [x], name); return new cache(this, funcs[0], x, name); } : function() { if (cache === null) cache = H.closureFromTearOff(this, funcs, reflectionInfo, false, [], name); return new cache(this, funcs[0], null, name); }; } function tearOff(funcs, reflectionInfo, isStatic, name, isIntercepted) { var cache; return isStatic ? function() { if (cache === void 0) cache = H.closureFromTearOff(this, funcs, reflectionInfo, true, [], name).prototype; return cache; } : tearOffGetter(funcs, reflectionInfo, name, isIntercepted); } var functionCounter = 0; var tearOffGetter = typeof dart_precompiled == "function" ? tearOffGetterCsp : tearOffGetterNoCsp; if (!init.libraries) init.libraries = []; if (!init.mangledNames) init.mangledNames = map(); if (!init.mangledGlobalNames) init.mangledGlobalNames = map(); if (!init.statics) init.statics = map(); if (!init.typeInformation) init.typeInformation = map(); if (!init.globalFunctions) init.globalFunctions = map(); if (!init.interceptedNames) init.interceptedNames = map(); var libraries = init.libraries; var mangledNames = init.mangledNames; var mangledGlobalNames = init.mangledGlobalNames; var hasOwnProperty = Object.prototype.hasOwnProperty; var length = reflectionData.length; for (var i = 0; i < length; i++) { var data = reflectionData[i]; var name = data[0]; var uri = data[1]; var metadata = data[2]; var globalObject = data[3]; var descriptor = data[4]; var isRoot = !!data[5]; var fields = descriptor && descriptor["^"]; if (fields instanceof Array) fields = fields[0]; var classes = []; var functions = []; processStatics(descriptor); libraries.push([name, uri, classes, functions, metadata, fields, isRoot, globalObject]); } })([ ["dart2js._js_primitives", "dart:_js_primitives", , H, { "^": "", printString: function(string) { if (typeof dartPrint == "function") { dartPrint(string); return; } if (typeof console == "object" && typeof console.log != "undefined") { console.log(string); return; } if (typeof window == "object") return; if (typeof print == "function") { print(string); return; } throw "Unable to print message: " + String(string); } }], ["", "test.dart", , V, { "^": "", main: function() { var i, j, line; for (i = 1; i <= 9; ++i) for (j = 1; j <= 9; ++j) { line = "" + i + "x" + j + "=" + i * j; H.printString(line); } } }, 1], ]); // Runtime type support // getInterceptor methods $.Closure_functionCounter = 0; $.BoundClosure_selfFieldNameCache = null; $.BoundClosure_receiverFieldNameCache = null; $.printToZone = null; init.metadata = []; $ = null; Isolate = Isolate.$finishIsolateConstructor(Isolate); $ = new Isolate(); function convertToFastObject(properties) { function MyClass() { } MyClass.prototype = properties; new MyClass(); return properties; } ; A = convertToFastObject(A); B = convertToFastObject(B); C = convertToFastObject(C); D = convertToFastObject(D); E = convertToFastObject(E); F = convertToFastObject(F); G = convertToFastObject(G); H = convertToFastObject(H); J = convertToFastObject(J); K = convertToFastObject(K); L = convertToFastObject(L); M = convertToFastObject(M); N = convertToFastObject(N); O = convertToFastObject(O); P = convertToFastObject(P); Q = convertToFastObject(Q); R = convertToFastObject(R); S = convertToFastObject(S); T = convertToFastObject(T); U = convertToFastObject(U); V = convertToFastObject(V); W = convertToFastObject(W); X = convertToFastObject(X); Y = convertToFastObject(Y); Z = convertToFastObject(Z); function init() { Isolate.$isolateProperties = Object.create(null); Isolate.$lazy = function(prototype, staticName, fieldName, getterName, lazyValue) { if (!init.lazies) init.lazies = Object.create(null); init.lazies[fieldName] = getterName; var sentinelUndefined = {}; var sentinelInProgress = {}; prototype[fieldName] = sentinelUndefined; prototype[getterName] = function() { var result = $[fieldName]; try { if (result === sentinelUndefined) { $[fieldName] = sentinelInProgress; try { result = $[fieldName] = lazyValue(); } finally { if (result === sentinelUndefined) $[fieldName] = null; } } else { if (result === sentinelInProgress) H.throwCyclicInit(staticName); } return result; } finally { $[getterName] = function() { return this[fieldName]; }; } }; }; Isolate.$finishIsolateConstructor = function(oldIsolate) { var isolateProperties = oldIsolate.$isolateProperties; function Isolate() { var hasOwnProperty = Object.prototype.hasOwnProperty; for (var staticName in isolateProperties) if (hasOwnProperty.call(isolateProperties, staticName)) this[staticName] = isolateProperties[staticName]; var lazies = init.lazies; for (var lazyInit in lazies) { this[lazies[lazyInit]] = null; } function ForceEfficientMap() { } ForceEfficientMap.prototype = this; new ForceEfficientMap(); for (var lazyInit in lazies) { var lazyInitName = lazies[lazyInit]; this[lazyInitName] = isolateProperties[lazyInitName]; } } Isolate.prototype = oldIsolate.prototype; Isolate.prototype.constructor = Isolate; Isolate.$isolateProperties = isolateProperties; return Isolate; }; } // BEGIN invoke [main]. ;(function(callback) { if (typeof document === "undefined") { callback(null); return; } if (document.currentScript) { callback(document.currentScript); return; } var scripts = document.scripts; function onLoad(event) { for (var i = 0; i < scripts.length; ++i) { scripts[i].removeEventListener("load", onLoad, false); } callback(event.target); } for (var i = 0; i < scripts.length; ++i) { scripts[i].addEventListener("load", onLoad, false); } })(function(currentScript) { init.currentScript = currentScript; if (typeof dartMainRunner === "function") { dartMainRunner(V.main, []); } else { V.main([]); } }); ; // END invoke [main]. })() //# sourceMappingURL=out.js.map
s519021677
p00000
u693762292
1419309654
9JavaScript
JavaScript
js
0Accepted
20
7,912
14,407
1/1
for(var i=1;i<10;i++){ for(var j=1;j<10;j++){ console.log(i+"x"+j+"="+(i*j)); } }
s150082080
p00000
u540218629
1424013687
9JavaScript
JavaScript
js
0Accepted
20
7,640
90
1/1
for (var i = 1; i <= 9; i++) { for (var j = 1; j <= 9; j++) { console.log(i+'x'+j+'='+i*j); } };
s394589963
p00000
u517414491
1427366633
9JavaScript
JavaScript
js
0Accepted
20
7,644
104
1/1
for(var i=1;i<10;i++){ for(var j=1;j<10;j++){ console.log(i+"x"+j+"="+(i*j)); } }
s127811360
p00000
u753665064
1427710067
9JavaScript
JavaScript
js
0Accepted
20
7,644
81
1/1
for (var i = 1; i <= 9; i++) { for (var j = 1; j <= 9; j++) { console.log('%dx%d=%d', i, j, i * j); } }
s095115230
p00000
u759826653
1428936698
9JavaScript
JavaScript
js
0Accepted
20
7,644
119
1/1
for(var i=1;i<=9;i++) for(var j=1;j<=9;j++) console.log(i+"x"+j+"="+(i*j));
s235171227
p00000
u340523328
1429154341
9JavaScript
JavaScript
js
0Accepted
20
7,644
81
1/1
for(i=1;i<=9;i++)for(j=1;console.log(i+'x'+j+'='+(i*j)),j<9;j++);
s365234198
p00000
u340523328
1429154697
9JavaScript
JavaScript
js
0Accepted
20
7,640
65
1/1
for(i=1;i<=9;i++)for(j=1;console.log(i+'x'+j+'='+i*j),j<9;j++);
s787164644
p00000
u340523328
1429154881
9JavaScript
JavaScript
js
0Accepted
20
7,644
63
1/1
for(var i=0; i<9; i++){ for(var j=0; j<9; j++){ kotae = (i+1) * (j+1); console.log((i+1)+"x"+(j+1)+"="+kotae); } }
s325798075
p00000
u578350999
1430729779
9JavaScript
JavaScript
js
0Accepted
20
7,644
138
1/1
for(var i = 1; i < 10; i++){ for(var j = 1; j < 10; j++){ console.log(i+"x"+j+"="+(i*j)); } }
s757175137
p00000
u784443002
1433308569
9JavaScript
JavaScript
js
0Accepted
20
7,644
109
1/1
var qq=function(i,j){ if(j==10){ qq(i+1,1) }else if(i==10){ return }else{ console.log(i+"x"+j+"="+i*j) qq(i,j+1) } } qq(1,1)
s043513641
p00000
u706512194
1433725669
9JavaScript
JavaScript
js
0Accepted
20
7,644
172
1/1
'use strict'; var NS = {}; function addProps(ns) { var isBrowser = function() { return typeof window !== 'undefined'; } ns.isBrowser = isBrowser; var isNodejs = function() { return ! isBrowser(); } ns.isNodejs = isNodejs; if (isBrowser()) { var getHtmlEncoded = function(string0) { return String(string0) .replace(/&/g, '&amp;') .replace(/"/g, '&quot;') .replace(/'/g, '&#39;') .replace(/</g, '&lt;') .replace(/>/g, '&gt;'); } ns.getHtmlEncoded = getHtmlEncoded; var outputCode = function() { document.getElementById('code').innerHTML = '<pre><code>' + getHtmlEncoded(addProps) + '</code></pre>'; } ns.outputCode = outputCode; } var getInput = function() { var inputLines = []; if (isBrowser()) { var html = document.getElementById('input').innerHTML; inputLines = html.split('<br>'); } if (isNodejs()) { inputLines = require("fs").readFileSync("/dev/stdin", "utf8").trim().split('\n'); } return inputLines; } var doOutput = function(outputLines) { if (isBrowser()) { document.getElementById('output').innerHTML = outputLines.map(getHtmlEncoded).join('<br>\n'); } if (isNodejs()) { for (var i = 0; i < outputLines.length; i++) { console.log(outputLines[i]); } } } ns.doOutput = doOutput; var getProduct = function(a, b) { return a * b; } var main = function() { var strings = []; for (var a = 1; a <= 9; a++) { for (var b = 1; b <= 9; b++) { var s = a + 'x' + b + '=' + getProduct(a, b); strings.push(s); } } doOutput(strings); } ns.main = main; } addProps(NS); if (NS.isBrowser()) { window.onload = function() { NS.outputCode(); } } NS.main();
s072262521
p00000
u951602761
1435154239
9JavaScript
JavaScript
js
0Accepted
20
7,640
2,123
1/1
'use strict'; (function(stdin) { for(var i = 1; i <= 9; i++) for (var j = 1; j <= 9; j++) console.log([i,'x',j,'=',i*j].join('')); }(require('fs').readFileSync('/dev/stdin', 'utf8')));
s712021434
p00000
u261533743
1438683730
9JavaScript
JavaScript
js
0Accepted
20
7,640
208
1/1
'use strict'; (function(stdin) { for(var i =1;i<=9;i++){ for (var j=1;j<=9;j++){ console.log([i,'x',j,'=',i*j].join('')); } } }(require('fs').readFileSync('/dev/stdin', 'utf8')));
s605719660
p00000
u264218752
1438683878
9JavaScript
JavaScript
js
0Accepted
20
7,636
205
1/1
'use strict'; (function(stdin) { for(var j = 1; j <= 9; j ++) for(var i = 1; i <= 9; i ++) console.log(j + 'x' + i + '=' + i * j); }(require('fs').readFileSync('/dev/stdin', 'utf8')));
s989435759
p00000
u434064811
1438684240
9JavaScript
JavaScript
js
0Accepted
20
7,640
244
1/1
'use strict'; (function(stdin) { for(var i= 1;i<= 9;i++){ for (var j= 1;j<= 9;j++){ console.log([i,'x' ,j ,'=' ,i*j].join('')); } } }(require('fs').readFileSync('/dev/stdin', 'utf8')));
s870417504
p00000
u149005580
1438684486
9JavaScript
JavaScript
js
0Accepted
20
7,640
195
1/1
for(var i = 1; i <= 9; ++i) for(var j = 1; j <= 9; ++j) console.log(i + 'x' + j + '=' + i * j);
s859346909
p00000
u591159491
1440571132
9JavaScript
JavaScript
js
0Accepted
60
15,540
108
1/1
for(i=1;i<=9;i++)for(j=1;console.log(i+'x'+j+'='+i*j),j<9;j++);
s246081686
p00000
u340523328
1445237240
9JavaScript
JavaScript
js
0Accepted
60
15,504
63
1/1
for(var i = 1; i < 10; i++){ for(var j = 1; j < 10; j++){ console.log(i + "x" + j + "=" + (i * j)); } }
s352352437
p00000
u642047787
1446384794
9JavaScript
JavaScript
js
0Accepted
50
15,400
107
1/1
for(var i=1;i<=9;i++){ for(var j=1;j<=9;j++){ console.log(i+"x"+j+"="+i*j); } }
s809554572
p00000
u324596395
1450080093
9JavaScript
JavaScript
js
0Accepted
60
15,520
95
1/1
for (var i = 1 ; i <= 9 ; i++) { for (var j = 1 ; j <= 9 ; j++) { console.log('%dx%d=%d', i, j, i*j); } }
s329413703
p00000
u881100444
1453048537
9JavaScript
JavaScript
js
0Accepted
90
15,764
110
1/1
var i,j; for (i=1; i<=9; i++) { for (j=1; j<=9; j++) { console.log( i + "x" + j + "=" + j*i); }}
s000507310
p00000
u814882345
1453587009
9JavaScript
JavaScript
js
0Accepted
60
15,520
101
1/1
var i,j; var result=""; for(i=1;i<=9;i++){ for(j=1;j<=9;j++){ console.log(i+"x"+j+"="+(i*j)); }}
s752190969
p00000
u216183888
1453972433
9JavaScript
JavaScript
js
0Accepted
60
15,480
96
1/1
for(var i = 1; i <= 9; ++i) { for(var j = 1; j <= 9; ++j) { console.log(i + 'x' + j + '=' + i * j); } }
s428823796
p00000
u251232298
1455856014
9JavaScript
JavaScript
js
0Accepted
60
15,532
112
1/1
for (a=1; a<=9; a++) { for (b=1; b<=9; b++) { console.log (a + 'x' + b + '=' + a*b); } }
s187437269
p00000
u554041351
1456076009
9JavaScript
JavaScript
js
0Accepted
50
15,332
93
1/1
for(i=1; i<=9; ++i) { for(j=1; j<=9; ++j) { v = i * j; console.log(i.toString() + "x" + j.toString() + "=" + v.toString()); } }
s759005745
p00000
u818337098
1457967159
9JavaScript
JavaScript
js
0Accepted
60
15,508
151
1/1
for (var i = 1; i < 10; i++) { for (var j = 1; j < 10; j++) { console.log(i + "x" + j + "=" + (i*j)); } }
s572937525
p00000
u529386725
1460036255
9JavaScript
JavaScript
js
0Accepted
40
15,436
121
1/1
for(x=1;x<10;x++){y=1;for(;y<10;){console.log(x+"x"+y+"="+x*y++);}}
s216824522
p00000
u149181280
1465893775
9JavaScript
JavaScript
js
0Accepted
60
15,296
67
1/1
var i, j, result; for(i = 1; i < 10; i++) { for(j = 1; j < 10; j++) { result = i * j; console.log(i.toString() + 'x' + j.toString() + '=' + result.toString()); } }
s350016958
p00000
u818337098
1466581742
9JavaScript
JavaScript
js
0Accepted
50
15,432
188
1/1
var i, j, result; for(i = 1; i < 10; i++) { for(j = 1; j < 10; j++) { result = i * j; console.log(i.toString() + 'x' + j.toString() + '=' + result.toString()); } }
s262879866
p00000
u229233999
1466581960
9JavaScript
JavaScript
js
0Accepted
60
15,512
189
1/1
for(var a = 1; a <= 9; a += 1){ for(var b = 1; b <= 9; b += 1){ console.log(a + 'x' + b + '=' + a * b); } }
s103738865
p00000
u027868841
1470400497
9JavaScript
JavaScript
js
0Accepted
60
15,416
124
1/1
for(var i = 1; i < 10; ++i) { for(var j = 1; j < 10; ++j) { console.log(i + 'x' + j + '=' + (i * j)); } }
s466732183
p00000
u582608581
1471221625
9JavaScript
JavaScript
js
0Accepted
60
15,440
109
1/1
for(var i = 1; i < 10; ++i) { for(var j = 1; j < 10; ++j) { console.log(i + 'x' + j + '=' + (i * j)); } }
s487590006
p00000
u582608581
1471683834
9JavaScript
JavaScript
js
0Accepted
50
15,404
109
1/1
'use strict'; for (var i = 1; i <= 9; i++) { for (var j = 1; j <= 9; j++) { console.log(i + 'x' + j + '=' + (i * j)) } }
s217475627
p00000
u499980284
1473762616
9JavaScript
JavaScript
js
0Accepted
50
15,452
128
1/1
for(var i=1; i<10; i++){ for(var j=1; j<10; j++){ console.log(i + "x" + j + "=" + i * j); } }
s212545595
p00000
u590596836
1477053998
9JavaScript
JavaScript
js
0Accepted
50
15,564
99
1/1
for(var i=1;i<10;i++){ for(var j=1;j<10;j++){ console.log(i+"x"+j+"="+(i*j)); } }
s130086744
p00000
u437327236
1477580950
9JavaScript
JavaScript
js
0Accepted
60
15,520
81
1/1
for(var i=1;i<10;i++){ for(var j=1;j<10;j++){ console.log(i+"x"+j+"="+(i*j)); } }
s804870964
p00000
u176545929
1477625078
9JavaScript
JavaScript
js
0Accepted
50
15,480
85
1/1
for(var i=1;i<10;i++){ for(var j=1;j<10;j++){ console.log(i+"x"+j+"="+(i*j)); } }
s004316197
p00000
u634044107
1477625220
9JavaScript
JavaScript
js
0Accepted
60
15,512
85
1/1
function main() { for (var x = 1; x <= 9; x++) { for (var y = 1; y <= 9; y++) { console.log(x + "x" + y + "=" + x * y); } } } main();
s881843276
p00000
u193012322
1477631546
9JavaScript
JavaScript
js
0Accepted
60
15,416
170
1/1
main(); function main(){ var num; var str; for(var i=1;i<=9;++i){ for(var j=1;j<=9;++j){ num = i * j; str = i + "x" + j + "=" + num; console.log(str); } } }
s255841666
p00000
u855222618
1477743422
9JavaScript
JavaScript
js
0Accepted
60
15,376
230
1/1
for (var i = 1; i < 10; i++) { for (var j = 1; j < 10; j++) { console.log(i + "x" + j + "=" + (i * j)); } }
s029651023
p00000
u206921460
1477918061
9JavaScript
JavaScript
js
0Accepted
60
15,384
123
1/1
for(var i = 1; i < 10; i++) for(var j = 1; j < 10; j++) console.log(i + 'x' + j + '=' + (i*j));
s924582737
p00000
u700525718
1478127720
9JavaScript
JavaScript
js
0Accepted
60
15,368
95
1/1
for(var i = 1; i < 10; i++) { for(var j = 1; j < 10; j++) { console.log(i+"x"+j+"="+i*j); } }
s523976039
p00000
u646888701
1478685816
9JavaScript
JavaScript
js
0Accepted
60
15,496
100
1/1
for (var i = 0; i < (9 * 9); i++) { var a = Math.floor(i / 9) + 1; var b = (i % 9) + 1; console.log(a + "x" + b + "=" + (a*b)); }
s801681450
p00000
u646888701
1478686478
9JavaScript
JavaScript
js
0Accepted
50
15,264
148
1/1
for (var i = 0; i < 9 * 9; i++) { var a = Math.floor(i / 9) + 1; var b = i % 9 + 1; console.log(a + "x" + b + "=" + a*b); }
s461129130
p00000
u646888701
1478686653
9JavaScript
JavaScript
js
0Accepted
60
15,404
142
1/1
for (var i = 0; i < (9 * 9); i++) { var a = Math.floor(i / 9) + 1; var b = (i % 9) + 1; console.log(a + "x" + b + "=" + (a*b)); }
s779568777
p00000
u646888701
1478687008
9JavaScript
JavaScript
js
0Accepted
60
15,444
148
1/1
for (var i = 0; i < (9 * 9); i++) { var a = Math.floor(i / 9) + 1; var b = (i % 9) + 1; console.log(a + "x" + b + "=" + (a*b)); }
s139287496
p00000
u646888701
1478687126
9JavaScript
JavaScript
js
0Accepted
60
15,404
147
1/1
/** * Prints multiplication tables */ function main() { var lines = []; for (var a = 1; a <= 9; a++) { for (var b = 1; b <= 9; b++) { lines.push(template(a, b)); } } for (var i = 0; i < lines.length; i++) { console.log(lines[i]); } } function template(a, b) { return a + 'x' + b + '=' + (a * b); } main();
s547590776
p00000
u609092305
1479043390
9JavaScript
JavaScript
js
0Accepted
70
15,548
343
1/1
for (var i = 0; i < (9 * 9); i++) { var a = Math.floor(i / 9) + 1; var b = (i % 9) + 1; console.log(a + "x" + b + "=" + (a*b)); }
s785159941
p00000
u901358120
1479108567
9JavaScript
JavaScript
js
0Accepted
50
15,476
147
1/1
process.stdin.resume(); process.stdin.setEncoding('utf8'); var a = 1; for(a;a<=9;a++){ for(var i=0;i<9;i++){ console.log(a+"x"+(i+1)+"="+a*(i+1)); } }
s104173047
p00000
u828399801
1479778820
9JavaScript
JavaScript
js
0Accepted
60
15,656
158
1/1
for (var i = 1; i < 10; i++) { for (var j = 1; j < 10; j++) { console.log(i + "x" + j + "=" + (i*j)); } }
s860833735
p00000
u558442027
1480314669
9JavaScript
JavaScript
js
0Accepted
60
15,404
115
1/1
var Multiply = { start: 1, end: 10, equation: function(multiplicand) { for(i=1; i<this.end; i++) { console.log(multiplicand + "x" + i + "=" + multiplicand*i); } }, solve: function() { for(multiplicand=1; multiplicand < this.end; multiplicand++) { this.equation(multiplicand); } return; } } Multiply.solve();
s689366846
p00000
u608123064
1480489615
9JavaScript
JavaScript
js
0Accepted
60
15,392
351
1/1
var i = 0; while(i++ < 9){ var j = 0; while(j++ < 9){ console.log(i+"x"+j+"="+(i*j)); } }
s367141017
p00000
u845643816
1480696593
9JavaScript
JavaScript
js
0Accepted
60
15,392
109
1/1
//limit is inclusive function printMultiplicationsTable(start, limit) { for(var i = start; i <= limit; i++) { for(var k = start; k <= limit; k++) { console.log(i + "x" + k + "=" + (i*k)); } } } printMultiplicationsTable(1, 9);
s814262843
p00000
u069640201
1482386404
9JavaScript
JavaScript
js
0Accepted
60
15,476
242
1/1
var begin = 1, end = 9; for(var i = begin; i <= end; i++) { for(var j = begin; j <= end; j++) { console.log(i + 'x' + j + '=' + i * j); } }
s092682291
p00000
u477575646
1483628109
9JavaScript
JavaScript
js
0Accepted
50
15,416
152
1/1
for (var i = 1; i < 10; i++) { for (var j = 1; j < 10; j++) { console.log(i + "x" + j + "=" + (i * j)) } }
s061308342
p00000
u627626670
1484752548
9JavaScript
JavaScript
js
0Accepted
60
15,544
112
1/1
for (var i = 1; i <= 9; i ++) { for (var j = 1; j <= 9; j ++) { console.log(i + 'x' + j + '=' + i * j); } }
s678742598
p00000
u568697849
1485401140
9JavaScript
JavaScript
js
0Accepted
60
15,408
111
1/1
for(var i=1; i<=9; i++) { for(var j=1; j<=9; j++) { process.stdout.write(i+"x"+j+"="+(i*j)+"\n"); } }
s692299731
p00000
u252414452
1485875680
9JavaScript
JavaScript
js
0Accepted
50
15,508
109
1/1
for (var i = 1; i < 10; i++) { for (var j = 1; j < 10; j++) { console.log(i + "x" + j + "=" + (i*j)); } }
s461652033
p00000
u786823898
1486108429
9JavaScript
JavaScript
js
0Accepted
60
15,248
115
1/1
for(var i=1;i<=9;i++){ for(var j=1;j<=9;j++){ console.log(i+'x'+j+'='+(i*j)); } }
s009086234
p00000
u406437536
1489596329
9JavaScript
JavaScript
js
0Accepted
50
15,340
84
1/1
for(var i = 1; i <= 9; i++){ for(var j = 1; j <= 9; j++){ console.log(i + "x" + j + "=" + (i * j)); } }
s465911895
p00000
u956456895
1491188392
9JavaScript
JavaScript
js
0Accepted
50
15,552
119
1/1
function hoge() { for (var i = 1; i < 10; i++) { for (var j = 1; j < 10; j++) { console.log("%dx%d=%d", i, j, i*j); } } } hoge()
s758978658
p00000
u811773570
1493346520
9JavaScript
JavaScript
js
0Accepted
60
15,788
147
1/1
function main() { for (var i = 1; i < 10; i++) { for (var j = 1; j < 10; j++) { console.log(i + "x" + j + "=" + i*j); } } } main();
s994023089
p00000
u811773570
1494173689
9JavaScript
JavaScript
js
0Accepted
50
15,292
168
1/1
process.stdin.resume(); process.stdin.setEncoding('utf8'); for(var i = 1; i<10; i++){ for(var j = 1; j<10; j++){ var k = i*j; console.log(i +"x" + j +"="+k) } }
s739715545
p00000
u618637847
1494289201
9JavaScript
JavaScript
js
0Accepted
60
15,656
189
1/1
var MIN = 1; var MAX = 9; for (var i = MIN; i <= MAX; i++) { for (var j = MIN; j <= MAX; j++) { console.log(i + "x" + j + "=" + i*j); } }
s853027962
p00000
u151242583
1494291092
9JavaScript
JavaScript
js
0Accepted
50
15,364
145
1/1
for(var i = 1;i<=9;i++){ for(var j = 1;j<=9;j++){ console.log(i + "x" + j + "=" + i*j); } }
s153327957
p00000
u636506508
1496473468
9JavaScript
JavaScript
js
0Accepted
50
15,492
95
1/1
for (var i = 1; i < 10; i++) { for (var j = 1; j < 10; j++) { console.log(i + "x" + j + "=" + (i*j)); } }
s288357228
p00000
u532049115
1496563696
9JavaScript
JavaScript
js
0Accepted
60
15,412
113
1/1
for(i=1;i<10;i++){ for(j=1;j<10;j++){ console.log(i+"x"+j+"="+i*j); } }
s156993382
p00000
u783417710
1496584077
9JavaScript
JavaScript
js
0Accepted
60
15,432
77
1/1
for(var i = 1; i < 10; i++) { for(var j = 1; j < 10; j++) { console.log(i + 'x' + j + '=' + (i*j)); } }
s639175255
p00000
u978830150
1496670291
9JavaScript
JavaScript
js
0Accepted
60
15,628
109
1/1
for (i = 1; i <= 9; i++) for (j = 1; j <= 9; j++) console.log("%dx%d=%d", i, j, i * j);
s077212100
p00000
u239637240
1496914374
9JavaScript
JavaScript
js
0Accepted
60
15,700
90
1/1
for (var i = 1; i <= 9; i++) { for (var j = 1; j <= 9; j++) { console.log(i + 'x' + j + '=' + (i*j)); } }
s589238560
p00000
u215732964
1497620779
9JavaScript
JavaScript
js
0Accepted
60
15,416
124
1/1
(function() { var a, b; a = [1, 2, 3, 4, 5, 6, 7, 8, 9]; b = a; a.forEach(function(n) { return b.forEach(function(m) { return console.log(n + "x" + m + "=" + (n * m)); }); }); }).call(this);
s518517275
p00000
u575032858
1507720667
9JavaScript
JavaScript
js
0Accepted
50
15,616
218
1/1

Dataset Card for Dataset Name

This dataset card aims to be a base template for new datasets. It has been generated using this raw template.

Dataset Details

Dataset Description

  • Curated by: [More Information Needed]
  • Funded by [optional]: [More Information Needed]
  • Shared by [optional]: [More Information Needed]
  • Language(s) (NLP): [More Information Needed]
  • License: [More Information Needed]

Dataset Sources [optional]

  • Repository: [More Information Needed]
  • Paper [optional]: [More Information Needed]
  • Demo [optional]: [More Information Needed]

Uses

Direct Use

[More Information Needed]

Out-of-Scope Use

[More Information Needed]

Dataset Structure

[More Information Needed]

Dataset Creation

Curation Rationale

[More Information Needed]

Source Data

Data Collection and Processing

[More Information Needed]

Who are the source data producers?

[More Information Needed]

Annotations [optional]

Annotation process

[More Information Needed]

Who are the annotators?

[More Information Needed]

Personal and Sensitive Information

[More Information Needed]

Bias, Risks, and Limitations

[More Information Needed]

Recommendations

Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.

Citation [optional]

BibTeX:

[More Information Needed]

APA:

[More Information Needed]

Glossary [optional]

[More Information Needed]

More Information [optional]

[More Information Needed]

Dataset Card Authors [optional]

[More Information Needed]

Dataset Card Contact

[More Information Needed]

Downloads last month
0
Edit dataset card