結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー kawanishi9726kawanishi9726
提出日時 2019-04-09 01:38:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 156 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 817,588 KB
最終ジャッジ日時 2024-07-01 22:58:57
合計ジャッジ時間 6,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
35,196 KB
testcase_01 AC 309 ms
163,648 KB
testcase_02 RE -
testcase_03 AC 30 ms
10,496 KB
testcase_04 RE -
testcase_05 TLE -
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,368 KB
testcase_09 RE -
testcase_10 AC 36 ms
14,720 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 33 ms
11,648 KB
testcase_13 AC 32 ms
11,392 KB
testcase_14 AC 34 ms
11,648 KB
testcase_15 AC 33 ms
11,392 KB
testcase_16 AC 69 ms
33,780 KB
testcase_17 AC 33 ms
11,648 KB
testcase_18 AC 36 ms
14,592 KB
testcase_19 AC 49 ms
22,660 KB
testcase_20 AC 50 ms
22,000 KB
testcase_21 AC 67 ms
30,308 KB
testcase_22 AC 32 ms
11,392 KB
testcase_23 AC 37 ms
14,592 KB
testcase_24 AC 32 ms
12,032 KB
testcase_25 AC 99 ms
49,444 KB
testcase_26 AC 31 ms
10,496 KB
testcase_27 AC 30 ms
10,496 KB
testcase_28 AC 32 ms
11,520 KB
testcase_29 AC 37 ms
14,720 KB
testcase_30 AC 175 ms
86,780 KB
testcase_31 AC 97 ms
36,900 KB
testcase_32 MLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a,b,c = map(int,input().split())
n += 1

ans = list(range(a,n,a))
ans += list(range(b,n,b))
ans += list(range(c,n,c))

print(len(set(ans)))
0