結果

問題 No.311 z in FizzBuzzString
ユーザー SagTokiSagToki
提出日時 2018-05-18 11:21:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,500 ms
コード長 960 bytes
コンパイル時間 3,952 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-09-24 22:08:16
合計ジャッジ時間 5,266 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
52,824 KB
testcase_01 AC 131 ms
54,096 KB
testcase_02 AC 127 ms
53,996 KB
testcase_03 AC 128 ms
53,968 KB
testcase_04 AC 129 ms
53,956 KB
testcase_05 AC 129 ms
53,964 KB
testcase_06 AC 125 ms
54,124 KB
testcase_07 AC 129 ms
54,352 KB
testcase_08 AC 128 ms
54,200 KB
testcase_09 AC 131 ms
54,088 KB
testcase_10 AC 132 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.InputMismatchException;

public class FizzBuzz {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        try{
            //入力される数値の定義と範囲内かのチェック
            long N = scanner.nextLong();
            if(N < 1 || N > Math.pow(10,18)){
                System.out.println("数字は1以上10の18乗以下で入力してください");
                System.exit(0);
            }
            //3の倍数と5の倍数の個数を求めてFizzとBuzzともにzが2個あるので2掛ける
            long FizzBuzzString = (N / 3 + N / 5) * 2 ;
            System.out.println(FizzBuzzString);
            
        }catch(InputMismatchException e){
            System.out.println("数字を入力してください");
        }catch(Exception E){
            System.out.println("予期せぬエラーです");
        }
    }    
}
0