結果

問題 No.308 素数は通れません
ユーザー 0w10w1
提出日時 2017-04-15 20:48:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 998 bytes
コンパイル時間 1,001 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 79,092 KB
最終ジャッジ日時 2024-07-18 18:04:01
合計ジャッジ時間 12,029 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
68,736 KB
testcase_01 AC 71 ms
68,864 KB
testcase_02 AC 75 ms
69,248 KB
testcase_03 AC 72 ms
69,248 KB
testcase_04 AC 75 ms
69,632 KB
testcase_05 AC 79 ms
72,832 KB
testcase_06 AC 82 ms
73,600 KB
testcase_07 AC 75 ms
69,376 KB
testcase_08 AC 75 ms
69,504 KB
testcase_09 AC 81 ms
72,916 KB
testcase_10 AC 101 ms
78,884 KB
testcase_11 WA -
testcase_12 AC 78 ms
72,064 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 84 ms
75,008 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 109 ms
78,848 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 107 ms
78,976 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 104 ms
78,808 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 109 ms
78,848 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 71 ms
68,736 KB
testcase_37 AC 69 ms
68,480 KB
testcase_38 AC 70 ms
68,736 KB
testcase_39 AC 69 ms
68,608 KB
testcase_40 AC 69 ms
68,480 KB
testcase_41 AC 68 ms
68,608 KB
testcase_42 AC 70 ms
68,608 KB
testcase_43 AC 68 ms
68,608 KB
testcase_44 AC 70 ms
68,480 KB
testcase_45 AC 71 ms
68,608 KB
testcase_46 AC 71 ms
68,608 KB
testcase_47 AC 70 ms
68,608 KB
testcase_48 AC 69 ms
68,608 KB
testcase_49 AC 69 ms
68,992 KB
testcase_50 AC 76 ms
68,608 KB
testcase_51 AC 70 ms
68,992 KB
testcase_52 AC 70 ms
68,480 KB
testcase_53 AC 70 ms
68,448 KB
testcase_54 AC 70 ms
68,608 KB
testcase_55 AC 70 ms
68,608 KB
testcase_56 AC 72 ms
68,736 KB
testcase_57 AC 74 ms
68,608 KB
testcase_58 AC 73 ms
68,736 KB
testcase_59 AC 69 ms
68,736 KB
testcase_60 AC 69 ms
68,480 KB
testcase_61 AC 70 ms
68,480 KB
testcase_62 AC 69 ms
68,480 KB
testcase_63 AC 70 ms
68,480 KB
testcase_64 AC 70 ms
68,608 KB
testcase_65 AC 70 ms
68,608 KB
testcase_66 AC 69 ms
68,480 KB
testcase_67 AC 71 ms
68,608 KB
testcase_68 AC 71 ms
68,480 KB
testcase_69 AC 69 ms
68,736 KB
testcase_70 AC 70 ms
68,608 KB
testcase_71 AC 71 ms
68,480 KB
testcase_72 AC 69 ms
68,608 KB
testcase_73 AC 70 ms
68,480 KB
testcase_74 AC 69 ms
68,608 KB
testcase_75 AC 72 ms
68,608 KB
testcase_76 AC 71 ms
68,608 KB
testcase_77 AC 71 ms
68,992 KB
testcase_78 AC 71 ms
68,608 KB
testcase_79 AC 70 ms
68,608 KB
testcase_80 AC 69 ms
68,736 KB
testcase_81 AC 71 ms
68,736 KB
testcase_82 AC 70 ms
68,736 KB
testcase_83 AC 70 ms
68,608 KB
testcase_84 AC 69 ms
68,736 KB
testcase_85 AC 69 ms
68,864 KB
testcase_86 AC 71 ms
68,608 KB
testcase_87 AC 71 ms
68,608 KB
testcase_88 AC 70 ms
68,480 KB
testcase_89 AC 71 ms
68,668 KB
testcase_90 AC 71 ms
68,480 KB
testcase_91 AC 69 ms
68,480 KB
testcase_92 AC 70 ms
68,736 KB
testcase_93 AC 70 ms
68,480 KB
testcase_94 AC 71 ms
68,608 KB
testcase_95 AC 70 ms
68,736 KB
testcase_96 AC 68 ms
68,736 KB
testcase_97 AC 70 ms
68,480 KB
testcase_98 AC 71 ms
68,480 KB
testcase_99 AC 72 ms
68,864 KB
testcase_100 AC 70 ms
68,716 KB
testcase_101 AC 89 ms
77,852 KB
testcase_102 AC 70 ms
68,608 KB
testcase_103 AC 69 ms
68,992 KB
testcase_104 AC 70 ms
68,608 KB
testcase_105 AC 71 ms
68,736 KB
testcase_106 AC 71 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import randrange
from queue import Queue

def is_prime( n ):
  if n <= 1 or ( n > 2 and ~n & 1 ): return False
  if n == 2 or n == 3: return True
  for i in range( 100 ):
    a = randrange( 2, n - 1, 1 )
    p = n - 1
    if pow( a, p, n ) != 1: return False
    while ~p & 1:
      p >>= 1
      x = pow( a, p, n )
      if x == 1: continue
      if x == n - 1: break
      return False
  return True

N = int( input() )

if N < 100:
  for w in range( 1, N + 1, 1 ):
    dd = [ -1, 1, -w, w ]
    vis = [ False for i in range( N + 1 ) ]
    que = Queue()
    vis[ 1 ] = True
    que.put( 1 )
    while not que.empty():
      u = que.get()
      if u == N:
        exit( print( w ) )
      for di in range( 4 ):
        nu = u + dd[ di ]
        if not ( 1 <= nu and nu <= N ): continue
        if is_prime( nu ): continue
        if vis[ nu ]: continue
        vis[ nu ] = 1
        que.put( nu )

else:
  if N % 8 != 1 or not is_prime( N - 8 ):
    print( 8 )
  else:
    print( 14 )
0