結果

問題 No.311 z in FizzBuzzString
ユーザー yagi2yagi2
提出日時 2017-04-20 15:08:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,500 ms
コード長 442 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-09-24 21:57:14
合計ジャッジ時間 4,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,784 KB
testcase_01 AC 130 ms
54,312 KB
testcase_02 AC 131 ms
54,000 KB
testcase_03 AC 130 ms
54,012 KB
testcase_04 AC 129 ms
53,984 KB
testcase_05 AC 129 ms
54,004 KB
testcase_06 AC 132 ms
54,028 KB
testcase_07 AC 131 ms
53,824 KB
testcase_08 AC 130 ms
54,180 KB
testcase_09 AC 131 ms
53,808 KB
testcase_10 AC 131 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        BigInteger N = new BigInteger(sc.next());
        // Fizz = 2 buzz = 2  FizzBuzz = 4;
        BigInteger cnt = N.divide(new BigInteger("5"));
        cnt = cnt.add(N.divide(new BigInteger("3")));

        System.out.println(cnt.multiply(new BigInteger("2")));
    }
}
0