結果

問題 No.1946 ロッカーの問題
ユーザー ntudantuda
提出日時 2022-10-24 21:12:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 3,000 ms
コード長 253 bytes
コンパイル時間 987 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,948 KB
最終ジャッジ日時 2024-07-03 00:09:35
合計ジャッジ時間 3,280 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,352 KB
testcase_01 AC 49 ms
52,224 KB
testcase_02 AC 114 ms
80,148 KB
testcase_03 AC 174 ms
109,948 KB
testcase_04 AC 114 ms
80,476 KB
testcase_05 AC 103 ms
79,488 KB
testcase_06 AC 106 ms
79,920 KB
testcase_07 AC 100 ms
79,488 KB
testcase_08 AC 97 ms
85,760 KB
testcase_09 AC 155 ms
105,984 KB
testcase_10 AC 133 ms
101,724 KB
testcase_11 AC 59 ms
69,284 KB
testcase_12 AC 91 ms
79,132 KB
testcase_13 AC 42 ms
51,840 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 69 ms
75,988 KB
testcase_16 AC 41 ms
51,968 KB
testcase_17 AC 101 ms
86,400 KB
testcase_18 AC 140 ms
99,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
A = list(map(int, input().split()))
P = [0] * (N+1)
B = [0] * (N+1)
for i in A:
    P[i] = 1
cnt = 0
for i in reversed(range(1,N+1)):
    if sum(B[::i]) & 1 != P[i]:
        B[i] = 1
    else:
        cnt += 1
print(cnt)
0