結果

問題 No.311 z in FizzBuzzString
ユーザー tsunabittsunabit
提出日時 2019-05-26 20:42:15
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 586 bytes
コンパイル時間 3,418 ms
コンパイル使用メモリ 77,900 KB
実行使用メモリ 61,412 KB
最終ジャッジ日時 2024-09-24 22:18:51
合計ジャッジ時間 7,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
61,124 KB
testcase_01 AC 126 ms
54,156 KB
testcase_02 AC 126 ms
53,700 KB
testcase_03 AC 128 ms
54,256 KB
testcase_04 AC 114 ms
52,740 KB
testcase_05 AC 123 ms
53,888 KB
testcase_06 AC 115 ms
52,828 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;
import java.util.Collections;
import java.util.Arrays;

public class No311 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        long n = s.nextLong();
        int c = 0;
        for(int i = 1; i <= n; i++) {
        	if((i % 3 == 0) && (i % 5 == 0)) {
        		c += 4;
        	}else if((i % 3 == 0) || (i % 5 == 0)) {
        		c += 2;
        	}
        }
        System.out.println(c);
    }
}
0