結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー Hoboteru4484Hoboteru4484
提出日時 2019-11-30 21:01:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 609 bytes
コンパイル時間 3,696 ms
コンパイル使用メモリ 75,952 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-11-21 03:32:53
合計ジャッジ時間 4,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,272 KB
testcase_01 AC 127 ms
54,040 KB
testcase_02 AC 130 ms
54,092 KB
testcase_03 AC 120 ms
53,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Answer {
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    int input = sc.nextInt();

    for(int i=1;i<=input;i++){
      int fizzJudge = i % 3;
      int buzzJudge = i % 5;
      int fizzBuzzJudge = i % 15;
      String output = null;

      if(fizzBuzzJudge == 0){
        output = "FizzBuzz";
      }else if(fizzJudge == 0){
        output = "Fizz";
      }else if(buzzJudge == 0){
        output = "Buzz";
      }else{
        output = String.valueOf(i);
      }

      System.out.println(output);

    }
    sc.close();

  }
}
0