結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,728 KB
testcase_01 AC 106 ms
52,900 KB
testcase_02 AC 107 ms
53,096 KB
testcase_03 AC 110 ms
54,272 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