結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー MatumoMatumo
提出日時 2018-07-13 02:04:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 74,048 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-10-05 00:22:59
合計ジャッジ時間 2,770 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,860 KB
testcase_01 AC 105 ms
52,988 KB
testcase_02 AC 122 ms
54,104 KB
testcase_03 AC 124 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int n = sc.nextInt();
		
		for(int i = 1; i <= n; i++) {
			if(i % 3 == 0) System.out.print("Fizz");
			if(i % 5 == 0) System.out.print("Buzz");
			if(i % 3 != 0 && i % 5 != 0) System.out.print(i);
			System.out.println();
		}
		
    }
}
0