結果

問題 No.1946 ロッカーの問題
ユーザー june19312june19312
提出日時 2022-05-21 00:00:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 3,000 ms
コード長 620 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 109,720 KB
最終ジャッジ日時 2024-09-20 10:24:39
合計ジャッジ時間 2,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,804 KB
testcase_01 AC 38 ms
53,484 KB
testcase_02 AC 38 ms
52,948 KB
testcase_03 AC 144 ms
109,720 KB
testcase_04 AC 84 ms
70,484 KB
testcase_05 AC 75 ms
74,604 KB
testcase_06 AC 75 ms
75,780 KB
testcase_07 AC 70 ms
72,704 KB
testcase_08 AC 77 ms
83,260 KB
testcase_09 AC 120 ms
105,796 KB
testcase_10 AC 113 ms
102,164 KB
testcase_11 AC 59 ms
68,008 KB
testcase_12 AC 94 ms
78,440 KB
testcase_13 AC 37 ms
52,888 KB
testcase_14 AC 37 ms
53,408 KB
testcase_15 AC 51 ms
62,708 KB
testcase_16 AC 38 ms
53,280 KB
testcase_17 AC 87 ms
84,692 KB
testcase_18 AC 126 ms
100,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

if M == 0:
    print(N)
    exit()

A = list(map(int,input().split()))
B = [False]*(N+1)

for i,v in enumerate(A):
    B[v] = True

#print("B",B)
ans = [0]*(N+1)
tmp = N//2+1

for i,v in enumerate(B):
    if v and i>=tmp:
        ans[i] = 1

#print(ans)

for i in range(tmp-1,0,-1):
    
    
    tmp2 = N//i
#    print("i=",i,"tmp2",tmp2)
    cnt = 0

    for j in range(tmp2):
        if ans[i*(j+1)] == 1:
            cnt+=1

#    print("cnt",cnt)
    
    if cnt%2 == 0 and B[i]:
        ans[i] = 1
    elif cnt%2 == 1 and not B[i]:
        ans[i] = 1


print(N-sum(ans))
#print(ans)
0