結果

問題 No.311 z in FizzBuzzString
ユーザー GrenacheGrenache
提出日時 2015-12-04 00:45:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,500 ms
コード長 287 bytes
コンパイル時間 3,278 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-09-24 21:14:55
合計ジャッジ時間 5,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,816 KB
testcase_01 AC 134 ms
54,104 KB
testcase_02 AC 133 ms
54,344 KB
testcase_03 AC 131 ms
53,852 KB
testcase_04 AC 134 ms
54,100 KB
testcase_05 AC 131 ms
54,040 KB
testcase_06 AC 133 ms
53,880 KB
testcase_07 AC 133 ms
54,192 KB
testcase_08 AC 133 ms
54,160 KB
testcase_09 AC 132 ms
54,228 KB
testcase_10 AC 135 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder311 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long n = sc.nextLong();

        long ret = n / 3 + n / 5;

        System.out.println(ret * 2);

        sc.close();
    }
}
0