結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | jimano |
提出日時 | 2015-10-11 14:42:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 565 bytes |
コンパイル時間 | 3,458 ms |
コンパイル使用メモリ | 77,444 KB |
実行使用メモリ | 41,468 KB |
最終ジャッジ日時 | 2024-07-21 06:25:46 |
合計ジャッジ時間 | 4,521 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
41,216 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
import java.util.Scanner; public class No9002 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); final String f = "Fizz"; final String b = "Buzz"; final String fb = f+b; for(int i = 1; i < a + 1; i++){ if(i % 15 == 0){ System.out.println(fb); } if (i % 3 == 0){ System.out.println(f); }else if (i % 5 == 0){ System.out.println(b); } System.out.println(i); } } }