結果

問題 No.311 z in FizzBuzzString
ユーザー UEUEUE66UEUEUE66
提出日時 2018-11-13 15:46:54
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 507 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-09-24 22:13:30
合計ジャッジ時間 3,790 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,732 KB
testcase_01 AC 127 ms
53,972 KB
testcase_02 AC 116 ms
52,700 KB
testcase_03 AC 123 ms
53,740 KB
testcase_04 AC 112 ms
52,664 KB
testcase_05 AC 116 ms
52,932 KB
testcase_06 AC 126 ms
54,048 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package com.company;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
	// write your code here
        Scanner s = new Scanner(System.in);
        int count = 0;
        int N = s.nextInt();
        for (int i = 1; i < N + 1; i++) {
            if (i % 3 == 0 && i % 5 == 0) {
                count = count + 4;
            } else if (i % 3 == 0 || i % 5 == 0) {
                count = count + 2;
            }
        }
        System.out.println(count);
    }
}
0