結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | Gchansanjou |
提出日時 | 2018-02-09 01:48:20 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 743 bytes |
コンパイル時間 | 3,706 ms |
コンパイル使用メモリ | 74,580 KB |
実行使用メモリ | 50,372 KB |
最終ジャッジ日時 | 2024-10-01 21:16:40 |
合計ジャッジ時間 | 3,741 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
36,968 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
package yukiCoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No09002 { public static void main(String[] args) { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); try { int input = Integer.parseInt(bufferedReader.readLine()); for (int i = 1 ; i <= input ; i++) { if (0 == i%3 && 0 == i%5) { System.out.println("BuzzFizz"); } else if (0 == i%3) { System.out.println("Fizz"); } else if (0 == i%5) { System.out.println("Buzz"); } else { System.out.println(i); } } } catch (NumberFormatException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } }