結果

問題 No.308 素数は通れません
ユーザー 0w10w1
提出日時 2017-04-15 20:39:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 971 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-07-18 18:03:20
合計ジャッジ時間 10,157 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
68,864 KB
testcase_01 AC 57 ms
68,992 KB
testcase_02 AC 56 ms
69,376 KB
testcase_03 AC 57 ms
69,632 KB
testcase_04 AC 57 ms
69,504 KB
testcase_05 AC 64 ms
72,960 KB
testcase_06 AC 68 ms
74,496 KB
testcase_07 AC 66 ms
71,552 KB
testcase_08 AC 65 ms
71,680 KB
testcase_09 WA -
testcase_10 AC 83 ms
78,684 KB
testcase_11 WA -
testcase_12 AC 61 ms
71,528 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 77 ms
78,544 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 87 ms
78,848 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 89 ms
78,976 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 63 ms
68,992 KB
testcase_37 AC 63 ms
68,608 KB
testcase_38 AC 63 ms
68,608 KB
testcase_39 AC 63 ms
68,992 KB
testcase_40 AC 58 ms
68,864 KB
testcase_41 AC 57 ms
68,480 KB
testcase_42 AC 57 ms
69,120 KB
testcase_43 AC 57 ms
68,736 KB
testcase_44 AC 56 ms
68,660 KB
testcase_45 AC 58 ms
68,480 KB
testcase_46 AC 67 ms
68,736 KB
testcase_47 AC 63 ms
68,480 KB
testcase_48 AC 65 ms
68,864 KB
testcase_49 AC 64 ms
68,736 KB
testcase_50 AC 56 ms
68,524 KB
testcase_51 AC 55 ms
68,736 KB
testcase_52 AC 61 ms
68,736 KB
testcase_53 AC 60 ms
68,736 KB
testcase_54 AC 58 ms
68,736 KB
testcase_55 AC 57 ms
68,864 KB
testcase_56 AC 56 ms
68,736 KB
testcase_57 AC 58 ms
68,864 KB
testcase_58 AC 58 ms
68,608 KB
testcase_59 AC 62 ms
68,608 KB
testcase_60 AC 56 ms
68,608 KB
testcase_61 AC 58 ms
68,736 KB
testcase_62 AC 58 ms
68,736 KB
testcase_63 AC 65 ms
68,608 KB
testcase_64 AC 56 ms
68,736 KB
testcase_65 AC 55 ms
68,736 KB
testcase_66 AC 55 ms
68,736 KB
testcase_67 AC 57 ms
68,608 KB
testcase_68 AC 57 ms
68,608 KB
testcase_69 AC 57 ms
68,864 KB
testcase_70 AC 57 ms
68,864 KB
testcase_71 AC 57 ms
68,736 KB
testcase_72 AC 58 ms
68,736 KB
testcase_73 AC 55 ms
68,736 KB
testcase_74 AC 56 ms
68,736 KB
testcase_75 AC 56 ms
68,608 KB
testcase_76 WA -
testcase_77 AC 61 ms
68,608 KB
testcase_78 AC 56 ms
68,736 KB
testcase_79 AC 55 ms
68,960 KB
testcase_80 WA -
testcase_81 WA -
testcase_82 AC 56 ms
68,480 KB
testcase_83 AC 56 ms
68,736 KB
testcase_84 WA -
testcase_85 AC 56 ms
68,736 KB
testcase_86 WA -
testcase_87 WA -
testcase_88 AC 61 ms
68,736 KB
testcase_89 AC 62 ms
68,864 KB
testcase_90 WA -
testcase_91 AC 60 ms
68,736 KB
testcase_92 AC 55 ms
68,864 KB
testcase_93 AC 62 ms
68,736 KB
testcase_94 AC 64 ms
68,608 KB
testcase_95 AC 62 ms
68,736 KB
testcase_96 AC 62 ms
68,608 KB
testcase_97 AC 62 ms
68,864 KB
testcase_98 AC 63 ms
68,864 KB
testcase_99 AC 66 ms
68,608 KB
testcase_100 AC 62 ms
69,120 KB
testcase_101 WA -
testcase_102 AC 64 ms
68,736 KB
testcase_103 AC 64 ms
68,608 KB
testcase_104 AC 58 ms
68,736 KB
testcase_105 AC 57 ms
68,736 KB
testcase_106 AC 55 ms
68,608 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:
      x = pow( a, p, n )
      if x != 1 and x != n - 1: return False
      p >>= 1
  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