結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | Gchansanjou |
提出日時 | 2018-02-09 01:49:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 59 ms / 5,000 ms |
コード長 | 743 bytes |
コンパイル時間 | 3,492 ms |
コンパイル使用メモリ | 75,092 KB |
実行使用メモリ | 50,268 KB |
最終ジャッジ日時 | 2024-10-01 21:16:45 |
合計ジャッジ時間 | 4,243 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
50,012 KB |
testcase_01 | AC | 57 ms
50,268 KB |
testcase_02 | AC | 59 ms
50,248 KB |
testcase_03 | AC | 58 ms
50,212 KB |
ソースコード
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("FizzBuzz"); } 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(); } } }