結果

問題 No.311 z in FizzBuzzString
ユーザー rf141rf141
提出日時 2015-12-19 16:09:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,500 ms
コード長 212 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 73,824 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-09-24 21:28:15
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,140 KB
testcase_01 AC 128 ms
54,156 KB
testcase_02 AC 128 ms
54,160 KB
testcase_03 AC 129 ms
54,036 KB
testcase_04 AC 127 ms
53,940 KB
testcase_05 AC 115 ms
53,072 KB
testcase_06 AC 128 ms
53,896 KB
testcase_07 AC 127 ms
54,036 KB
testcase_08 AC 124 ms
54,100 KB
testcase_09 AC 129 ms
53,992 KB
testcase_10 AC 126 ms
54,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main {
    public static void main(String... args){
        Scanner scan = new Scanner(System.in);long n = scan.nextLong();
        System.out.println((n / 3 + n / 5) * 2);
    }
}
0