結果

問題 No.3022 縛りFizzBuzz (Easy)
ユーザー マサマサ
提出日時 2022-09-06 19:43:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 1,253 bytes
コンパイル時間 2,965 ms
コンパイル使用メモリ 79,176 KB
実行使用メモリ 41,744 KB
最終ジャッジ日時 2024-05-01 15:22:03
合計ジャッジ時間 3,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,200 KB
testcase_01 AC 133 ms
41,744 KB
testcase_02 AC 135 ms
41,568 KB
testcase_03 AC 135 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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;
	}
}
0