結果

問題 No.826 連絡網
ユーザー pluto77pluto77
提出日時 2019-11-09 09:07:26
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 744 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 1,381 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-15 04:11:37
合計ジャッジ時間 10,358 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
75,136 KB
testcase_01 AC 85 ms
75,136 KB
testcase_02 AC 92 ms
76,160 KB
testcase_03 AC 92 ms
77,440 KB
testcase_04 AC 92 ms
77,184 KB
testcase_05 AC 89 ms
76,544 KB
testcase_06 AC 89 ms
77,056 KB
testcase_07 AC 93 ms
77,568 KB
testcase_08 AC 89 ms
76,800 KB
testcase_09 AC 94 ms
77,696 KB
testcase_10 AC 90 ms
76,672 KB
testcase_11 AC 92 ms
76,416 KB
testcase_12 AC 507 ms
77,440 KB
testcase_13 AC 205 ms
77,696 KB
testcase_14 AC 366 ms
77,056 KB
testcase_15 AC 107 ms
77,184 KB
testcase_16 AC 250 ms
77,568 KB
testcase_17 AC 203 ms
77,184 KB
testcase_18 AC 176 ms
77,184 KB
testcase_19 AC 644 ms
77,312 KB
testcase_20 AC 585 ms
77,184 KB
testcase_21 AC 93 ms
77,184 KB
testcase_22 AC 208 ms
77,184 KB
testcase_23 AC 253 ms
77,184 KB
testcase_24 AC 155 ms
76,928 KB
testcase_25 AC 744 ms
77,184 KB
testcase_26 AC 161 ms
77,440 KB
testcase_27 AC 560 ms
77,440 KB
testcase_28 AC 386 ms
77,184 KB
testcase_29 AC 203 ms
77,312 KB
testcase_30 AC 729 ms
77,568 KB
testcase_31 AC 234 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki826
import sys

n,p=map(int,raw_input().split())
if p==1:
 res=1
 sys.exit()
res=n-1
for i in range(n/2+1,n+1):
 f=True
 j=2
 while j*j<=i:
  if i%j==0:
   f=False
   break
  else:
   j+=1
 if f:
  res-=1
  if i==p:
   res=1
   break
print res
0