結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | マサ |
提出日時 | 2022-09-06 19:43:33 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 132 ms / 2,000 ms |
コード長 | 1,253 bytes |
コンパイル時間 | 2,567 ms |
コンパイル使用メモリ | 79,604 KB |
実行使用メモリ | 41,504 KB |
最終ジャッジ日時 | 2024-11-21 20:16:16 |
合計ジャッジ時間 | 3,363 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
41,456 KB |
testcase_01 | AC | 114 ms
40,008 KB |
testcase_02 | AC | 130 ms
41,504 KB |
testcase_03 | AC | 132 ms
41,100 KB |
ソースコード
import java.util.HashMap; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); HashMap<String, Integer> hashmap = storageNumber(); int three = hashmap.get("three"); int five = hashmap.get("five"); for (int i = hashmap.get("one"); i <= num; i++) { if ((i % three == hashmap.get("zero")) && (i % five == hashmap.get("zero"))) { System.out.println("FizzBuzz"); } else if (i % three == hashmap.get("zero")) { System.out.println("Fizz"); } else if (i % five == hashmap.get("zero")) { System.out.println("Buzz"); } else { System.out.println(i); } } sc.close(); } static HashMap<String, Integer> storageNumber() { HashMap<String, Integer> hashmap = new HashMap<>(); hashmap.put("zero", "".length()); hashmap.put("one", "l".length()); hashmap.put("two", "lZ".length()); hashmap.put("three", "lZE".length()); hashmap.put("four", "lZEA".length()); hashmap.put("five", "lZEAS".length()); hashmap.put("six", "lZEASb".length()); hashmap.put("seven", "lZEASbL".length()); hashmap.put("eight", "lZEASbLB".length()); hashmap.put("nine", "lZEASbLBq".length()); return hashmap; } }