結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | jmjmjmjm |
提出日時 | 2019-01-07 19:27:31 |
言語 | JavaScript (node v21.7.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 261 bytes |
コンパイル時間 | 28 ms |
コンパイル使用メモリ | 6,688 KB |
実行使用メモリ | 40,064 KB |
最終ジャッジ日時 | 2024-10-13 00:57:00 |
合計ジャッジ時間 | 715 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
function Main(input) { let integer = input; for (let i = 1; i <= N; i++) { if (i % 3==0){ console.log("Fizz")} else if (i % 5==0) console.log("Buzz") else console.log(i) } } Main(require("fs").readFileSync("/dev/stdin", "utf8"));