結果

問題 No.826 連絡網
ユーザー O2MTO2MT
提出日時 2020-12-12 23:17:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 204 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 83,624 KB
最終ジャッジ日時 2024-09-19 22:32:30
合計ジャッジ時間 3,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 WA -
testcase_02 AC 40 ms
59,684 KB
testcase_03 AC 41 ms
61,184 KB
testcase_04 AC 40 ms
60,852 KB
testcase_05 AC 39 ms
61,152 KB
testcase_06 AC 41 ms
61,088 KB
testcase_07 AC 40 ms
61,004 KB
testcase_08 AC 39 ms
60,568 KB
testcase_09 AC 41 ms
60,572 KB
testcase_10 AC 39 ms
59,476 KB
testcase_11 AC 44 ms
61,368 KB
testcase_12 AC 106 ms
81,072 KB
testcase_13 AC 64 ms
74,224 KB
testcase_14 AC 84 ms
79,848 KB
testcase_15 AC 44 ms
63,704 KB
testcase_16 AC 69 ms
76,936 KB
testcase_17 AC 63 ms
74,792 KB
testcase_18 AC 59 ms
71,700 KB
testcase_19 AC 108 ms
82,072 KB
testcase_20 AC 115 ms
81,868 KB
testcase_21 AC 42 ms
61,644 KB
testcase_22 AC 65 ms
73,960 KB
testcase_23 AC 75 ms
78,688 KB
testcase_24 AC 53 ms
69,672 KB
testcase_25 AC 129 ms
83,520 KB
testcase_26 AC 56 ms
69,320 KB
testcase_27 AC 101 ms
81,440 KB
testcase_28 AC 89 ms
80,052 KB
testcase_29 AC 65 ms
74,052 KB
testcase_30 AC 127 ms
83,624 KB
testcase_31 AC 69 ms
76,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P = map(int,input().split())
l = [0]*(N+1)
for i in range(2,N+1):
    for j in range(i,N+1,i):
        l[j] += 1
count = N-1
for n in range(N//2+1,N+1):
    if l[n] == 1:
        count -= 1
print(count)
0