結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー jp_stejp_ste
提出日時 2016-02-17 02:00:43
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 509 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 526,720 KB
最終ジャッジ日時 2024-09-22 07:24:19
合計ジャッジ時間 11,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 305 ms
167,912 KB
testcase_02 RE -
testcase_03 AC 131 ms
53,952 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 131 ms
54,260 KB
testcase_07 AC 130 ms
54,284 KB
testcase_08 AC 130 ms
54,000 KB
testcase_09 RE -
testcase_10 AC 136 ms
54,108 KB
testcase_11 AC 130 ms
54,068 KB
testcase_12 AC 155 ms
65,184 KB
testcase_13 AC 141 ms
58,288 KB
testcase_14 AC 153 ms
65,368 KB
testcase_15 AC 166 ms
71,656 KB
testcase_16 AC 161 ms
65,140 KB
testcase_17 AC 147 ms
60,616 KB
testcase_18 AC 206 ms
87,992 KB
testcase_19 AC 245 ms
110,664 KB
testcase_20 AC 266 ms
177,880 KB
testcase_21 AC 488 ms
383,624 KB
testcase_22 AC 158 ms
65,192 KB
testcase_23 AC 247 ms
110,500 KB
testcase_24 AC 213 ms
96,040 KB
testcase_25 AC 560 ms
390,720 KB
testcase_26 AC 130 ms
54,172 KB
testcase_27 AC 126 ms
53,868 KB
testcase_28 AC 132 ms
54,196 KB
testcase_29 AC 290 ms
139,472 KB
testcase_30 AC 568 ms
447,452 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 194 ms
91,872 KB
testcase_34 MLE -
testcase_35 RE -
testcase_36 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int a = scan.nextInt();
		int b = scan.nextInt();
		int c = scan.nextInt();

		boolean flag[] = new boolean[N+1];
		int check[] = { a,b,c };
		for(int i=0; i<3; i++) {
			for(int j=check[i]; j<=N; j+=check[i]) {
				flag[j] = true;
			}
		}
		
		int count = 0;
		for(int i=1; i<=N; i++) {
			if(flag[i]) count++;
		}
		System.out.println(count);
	}
}
0