結果

問題 No.311 z in FizzBuzzString
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-01-10 11:06:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,500 ms
コード長 257 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 54,624 KB
最終ジャッジ日時 2024-09-24 21:31:31
合計ジャッジ時間 4,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,032 KB
testcase_01 AC 127 ms
53,948 KB
testcase_02 AC 132 ms
54,016 KB
testcase_03 AC 131 ms
54,188 KB
testcase_04 AC 130 ms
53,764 KB
testcase_05 AC 132 ms
54,296 KB
testcase_06 AC 128 ms
54,024 KB
testcase_07 AC 129 ms
54,172 KB
testcase_08 AC 131 ms
54,624 KB
testcase_09 AC 133 ms
54,036 KB
testcase_10 AC 131 ms
53,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str = in.next();
        long n = Long.parseLong(str);

        System.out.println((n / 3 + n / 5) * 2);
    }
}
0