結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー sekihankamibanzsekihankamibanz
提出日時 2018-10-27 22:55:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 189 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 1,296,976 KB
最終ジャッジ日時 2024-11-19 06:52:49
合計ジャッジ時間 51,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 TLE -
testcase_03 AC 507 ms
51,384 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 MLE -
testcase_07 AC 540 ms
50,988 KB
testcase_08 MLE -
testcase_09 RE -
testcase_10 AC 553 ms
494,148 KB
testcase_11 AC 523 ms
51,492 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 MLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 674 ms
44,164 KB
testcase_27 AC 523 ms
44,172 KB
testcase_28 AC 578 ms
58,856 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 RE -
testcase_32 RE -
testcase_33 TLE -
testcase_34 RE -
testcase_35 RE -
testcase_36 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


n = int(input())
lists = [int(x) for x in input().split(' ')]

nums = np.array(range(1, n+1))

for i in lists:
    nums = nums[nums % i != 0]
    
print(n - len(nums))
0