結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | thaim24 |
提出日時 | 2016-09-23 00:33:19 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 140 ms / 5,000 ms |
コード長 | 802 bytes |
コンパイル時間 | 3,399 ms |
コンパイル使用メモリ | 75,240 KB |
実行使用メモリ | 53,956 KB |
最終ジャッジ日時 | 2024-04-28 20:17:27 |
合計ジャッジ時間 | 4,595 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
53,916 KB |
testcase_01 | AC | 135 ms
53,844 KB |
testcase_02 | AC | 138 ms
53,956 KB |
testcase_03 | AC | 140 ms
53,928 KB |
ソースコード
import java.util.Scanner; public class No9002 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String[] result = solve(N); for (int i=0; i<N; i++) { System.out.println(result[i]); } } public static String[] solve(int N) { String[] result = new String[N]; for (int i=1; i<=N; i++) { if (i%3 != 0 && i%5 != 0) { result[i-1] = String.valueOf(i); } else if (i%3 == 0 && i%5 == 0) { result[i-1] = "FizzBuzz"; } else if (i%3 == 0) { result[i-1] = "Fizz"; } else if (i%5 == 0) { result[i-1] = "Buzz"; } } return result; } }