結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 315 ms
163,524 KB
testcase_02 RE -
testcase_03 AC 31 ms
10,496 KB
testcase_04 RE -
testcase_05 TLE -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 30 ms
10,496 KB
testcase_09 RE -
testcase_10 WA -
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 32 ms
11,904 KB
testcase_13 AC 32 ms
11,520 KB
testcase_14 AC 36 ms
11,648 KB
testcase_15 AC 32 ms
11,520 KB
testcase_16 AC 73 ms
33,524 KB
testcase_17 AC 32 ms
11,520 KB
testcase_18 AC 38 ms
14,464 KB
testcase_19 AC 52 ms
22,524 KB
testcase_20 WA -
testcase_21 AC 71 ms
30,240 KB
testcase_22 AC 32 ms
11,264 KB
testcase_23 AC 37 ms
14,592 KB
testcase_24 AC 32 ms
11,904 KB
testcase_25 AC 102 ms
49,268 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 33 ms
11,904 KB
testcase_29 AC 38 ms
14,976 KB
testcase_30 AC 176 ms
86,720 KB
testcase_31 AC 100 ms
37,028 KB
testcase_32 MLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(len(set(ans)))
0