結果
問題 | No.311 z in FizzBuzzString |
ユーザー | ciel |
提出日時 | 2019-04-21 20:00:12 |
言語 | JavaScript (node v21.7.1) |
結果 |
AC
|
実行時間 | 80 ms / 1,500 ms |
コード長 | 886 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 40,064 KB |
最終ジャッジ日時 | 2024-09-24 22:17:33 |
合計ジャッジ時間 | 1,374 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
39,936 KB |
testcase_01 | AC | 71 ms
39,680 KB |
testcase_02 | AC | 80 ms
39,552 KB |
testcase_03 | AC | 73 ms
39,936 KB |
testcase_04 | AC | 72 ms
39,680 KB |
testcase_05 | AC | 70 ms
39,680 KB |
testcase_06 | AC | 71 ms
39,808 KB |
testcase_07 | AC | 72 ms
39,808 KB |
testcase_08 | AC | 73 ms
40,064 KB |
testcase_09 | AC | 72 ms
39,808 KB |
testcase_10 | AC | 72 ms
40,064 KB |
ソースコード
var main=function(){ var a=BigInt(readline()); print((2n*(a/5n+a/3n)).toString()); }; /// 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(); }