結果

問題 No.311 z in FizzBuzzString
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-26 14:21:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,500 ms
コード長 221 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 73,736 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-09-24 22:04:39
合計ジャッジ時間 4,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,164 KB
testcase_01 AC 131 ms
54,052 KB
testcase_02 AC 121 ms
52,896 KB
testcase_03 AC 131 ms
54,056 KB
testcase_04 AC 133 ms
54,080 KB
testcase_05 AC 133 ms
53,740 KB
testcase_06 AC 132 ms
53,840 KB
testcase_07 AC 134 ms
53,848 KB
testcase_08 AC 134 ms
53,992 KB
testcase_09 AC 131 ms
54,104 KB
testcase_10 AC 133 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] p) {
        Scanner q = new Scanner(System.in);
        long n = q.nextLong();
        System.out.println((n / 3 + n / 5) * 2);
    }
}
0