結果
問題 | No.311 z in FizzBuzzString |
ユーザー | ciel |
提出日時 | 2019-04-21 19:57:51 |
言語 | JavaScript (node v21.7.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 868 bytes |
コンパイル時間 | 315 ms |
コンパイル使用メモリ | 6,812 KB |
実行使用メモリ | 42,324 KB |
最終ジャッジ日時 | 2024-09-24 22:17:36 |
合計ジャッジ時間 | 1,413 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
var main=function(){ var a=BigInt(readline()); print(a/5n+a/3n); }; /// IO /// if(typeof process!=='undefined'){ //node.js var print=function(x){ console.log(x); } var readline=(function(){ var T=[],cnt=0; var stdin = process.openStdin(); stdin.setEncoding('utf8'); var input_fragment=""; stdin.on('data', function(input) { var ref=(input_fragment+input).split("\n"); input_fragment=ref.pop(); for(var i=0;i<ref.length;i++){ if(ref[i]=='')continue; T.push(ref[i]); } }); stdin.on('end', function(z) { if(input_fragment){ var ref=(input_fragment+"\n").split("\n"); input_fragment=ref.pop(); for(var i=0;i<ref.length;i++){ if(ref[i]=='')continue; T.push(ref[i]); } } main(); }); return function(){ if(T.length<=cnt)return null; return T[cnt++]; }; })(); }else{ //v8 main(); }