結果

問題 No.311 z in FizzBuzzString
ユーザー takutakutakutaku
提出日時 2020-09-17 14:07:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,500 ms
コード長 519 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-09-24 22:34:07
合計ジャッジ時間 3,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,952 KB
testcase_01 AC 111 ms
52,732 KB
testcase_02 AC 118 ms
54,312 KB
testcase_03 AC 110 ms
52,964 KB
testcase_04 AC 111 ms
53,092 KB
testcase_05 AC 122 ms
54,172 KB
testcase_06 AC 115 ms
53,016 KB
testcase_07 AC 119 ms
53,820 KB
testcase_08 AC 120 ms
54,192 KB
testcase_09 AC 123 ms
54,144 KB
testcase_10 AC 118 ms
54,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    // 標準入力を受け取る
	    Scanner sc = new Scanner(System.in);
        Long n = sc.nextLong();
        
        long count15 = n / 15;
        long count5 = n / 5 - count15;
        long count3 = n / 3 - count15;
        
        long result = 4 * count15 + 2 * count5 + 2 * count3;
        
        System.out.println(result);
	}
}

// 提出一覧からヒントを頂きました。申し訳ございません。
0