結果

問題 No.312 置換処理
ユーザー hanorverhanorver
提出日時 2015-12-05 17:17:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-14 14:28:13
合計ジャッジ時間 3,065 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 48 ms
11,264 KB
testcase_02 AC 48 ms
11,136 KB
testcase_03 AC 47 ms
11,264 KB
testcase_04 AC 35 ms
11,136 KB
testcase_05 WA -
testcase_06 AC 38 ms
11,136 KB
testcase_07 AC 59 ms
11,008 KB
testcase_08 AC 33 ms
11,136 KB
testcase_09 AC 33 ms
11,264 KB
testcase_10 AC 32 ms
11,136 KB
testcase_11 AC 40 ms
11,008 KB
testcase_12 AC 33 ms
11,264 KB
testcase_13 AC 33 ms
11,136 KB
testcase_14 AC 32 ms
11,008 KB
testcase_15 AC 33 ms
11,136 KB
testcase_16 AC 33 ms
11,136 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 33 ms
11,008 KB
testcase_19 AC 32 ms
11,008 KB
testcase_20 AC 32 ms
11,008 KB
testcase_21 AC 33 ms
11,136 KB
testcase_22 AC 34 ms
11,264 KB
testcase_23 AC 33 ms
11,264 KB
testcase_24 AC 34 ms
11,008 KB
testcase_25 AC 34 ms
11,136 KB
testcase_26 AC 34 ms
11,264 KB
testcase_27 AC 34 ms
11,008 KB
testcase_28 AC 33 ms
11,008 KB
testcase_29 AC 34 ms
11,136 KB
testcase_30 AC 47 ms
11,008 KB
testcase_31 AC 34 ms
11,264 KB
testcase_32 AC 47 ms
11,136 KB
testcase_33 AC 49 ms
11,136 KB
testcase_34 AC 46 ms
11,136 KB
testcase_35 AC 35 ms
11,136 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 33 ms
11,136 KB
testcase_39 AC 33 ms
11,008 KB
testcase_40 AC 32 ms
11,008 KB
testcase_41 AC 33 ms
11,008 KB
testcase_42 AC 32 ms
11,008 KB
testcase_43 AC 33 ms
11,008 KB
testcase_44 AC 33 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random as s
def p(q,k=1000):
 if q%2==0:return 0
 d=(q-1)>>1
 while d&1==0:d>>=1
 while k:
  k-=1
  t=d
  y=pow(s.randint(1,q-1),t,q)
  while t!=q-1 and y!=1 and y!=q-1: 
   y=pow(y,2,q)
   t<<=1
  if y!=q-1 and t&1==0:return 0
 return 1

n=int(input())
if p(n):
 print(n)
elif p(n//2):
 print(n//2)
else:
 if n%4==0:
  print(4)
 else:
  for i in range(3,n+3,2):
   if n%i==0:
    print(i)
    break
  else:print(n)
0