結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー fal_rndfal_rnd
提出日時 2016-10-26 11:17:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-11-24 03:48:07
合計ジャッジ時間 2,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,156 KB
testcase_01 AC 105 ms
41,016 KB
testcase_02 AC 123 ms
41,516 KB
testcase_03 AC 118 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class A
{
	public static final Scanner scanner = new Scanner(System.in);
	public static void main (String[] args) throws java.lang.Exception
	{
		int input = scanner.nextInt();
		for(int i=1; i<=input; i++){
			String o = String.valueOf(i);
			if(i%3==0){
				System.out.print("Fizz");
				o = "";
			}
			if(i%5==0){
				System.out.print("Buzz");
				o = "";
			}
			System.out.println(o);
		}
	}
}
0