結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | LR_Alumis |
提出日時 | 2015-04-14 01:27:17 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 450 bytes |
コンパイル時間 | 3,246 ms |
コンパイル使用メモリ | 74,904 KB |
実行使用メモリ | 37,064 KB |
最終ジャッジ日時 | 2024-07-04 14:22:01 |
合計ジャッジ時間 | 3,721 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
public class FizzBuzz { public static void main(String[] args) { for(int i=1; i<=Integer.parseInt(args[0]); i++){ if(i%3==0 && i%5==0){ System.out.println("FizzBuzz"); } else if(i%3==0){ System.out.println("Fizz"); } else if(i%5==0){ System.out.println("Buzz"); } else { System.out.println(i); } } } }