結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | Hoboteru4484 |
提出日時 | 2019-11-30 21:31:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 125 ms / 5,000 ms |
コード長 | 318 bytes |
コンパイル時間 | 3,967 ms |
コンパイル使用メモリ | 76,344 KB |
実行使用メモリ | 54,208 KB |
最終ジャッジ日時 | 2024-05-01 03:16:04 |
合計ジャッジ時間 | 4,356 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 107 ms
53,112 KB |
testcase_01 | AC | 121 ms
54,016 KB |
testcase_02 | AC | 124 ms
54,096 KB |
testcase_03 | AC | 125 ms
54,208 KB |
ソースコード
import java.util.Scanner; public class Answer { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int input = sc.nextInt(); for(int i=0;++i<=input;){ System.out.println((i % 3 > 0 ? "":"Fizz") + (i % 5 > 0 ? (i % 3 > 0 ? i : "") : "Buzz")); } sc.close(); } }