結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー fjafjafjafjafjafja
提出日時 2017-10-01 22:44:28
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 317 bytes
コンパイル時間 3,491 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 83,300 KB
最終ジャッジ日時 2024-11-15 21:48:50
合計ジャッジ時間 42,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 127 ms
46,428 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 128 ms
46,204 KB
testcase_07 AC 129 ms
83,236 KB
testcase_08 AC 130 ms
46,712 KB
testcase_09 TLE -
testcase_10 AC 133 ms
46,768 KB
testcase_11 AC 130 ms
83,300 KB
testcase_12 AC 225 ms
46,644 KB
testcase_13 AC 181 ms
82,844 KB
testcase_14 AC 213 ms
45,232 KB
testcase_15 AC 295 ms
82,956 KB
testcase_16 AC 234 ms
46,888 KB
testcase_17 AC 224 ms
82,984 KB
testcase_18 AC 461 ms
46,624 KB
testcase_19 AC 688 ms
81,944 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 216 ms
45,464 KB
testcase_23 AC 712 ms
41,280 KB
testcase_24 AC 555 ms
41,396 KB
testcase_25 TLE -
testcase_26 AC 120 ms
40,148 KB
testcase_27 AC 127 ms
41,500 KB
testcase_28 AC 131 ms
41,468 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 454 ms
41,152 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N316 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n=sc.nextInt(),a=sc.nextInt(),b=sc.nextInt(),c=sc.nextInt();
		int cnt=0;
		for(int i=1;i<=n;i++){
			if(i%a==0||i%b==0||i%c==0){
				cnt++;
			}
		}
		System.out.println(cnt);
	}

}
0