結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー takutakutakutaku
提出日時 2020-09-16 15:11:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 1,749 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-06-22 03:16:27
合計ジャッジ時間 2,785 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,968 KB
testcase_01 AC 117 ms
54,456 KB
testcase_02 AC 103 ms
52,952 KB
testcase_03 AC 113 ms
53,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	  
	  Scanner sc = new Scanner(System.in);
	  int num = sc.nextInt();
	  
	  
	  for(int i = 1; i <= num; i++) {
	        int result = i;
	        if(result % 15 == 0) {
	            System.out.println("FizzBuzz");
	        }else if(result % 5 == 0) {
	            System.out.println("Buzz");
	        }else if(result % 3 == 0) {
	            System.out.println("Fizz");
	        }else {
	            System.out.println(i);
	        }
	  }
	  
	}
}
0