結果

問題 No.1312 Snake Eyes
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-16 09:28:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 451 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-06-09 11:53:53
合計ジャッジ時間 11,654 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,472 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 41 ms
51,584 KB
testcase_06 AC 43 ms
51,712 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
51,712 KB
testcase_12 AC 41 ms
51,712 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 41 ms
51,456 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 42 ms
51,968 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 42 ms
51,840 KB
testcase_19 AC 40 ms
51,584 KB
testcase_20 AC 41 ms
51,456 KB
testcase_21 AC 41 ms
51,456 KB
testcase_22 AC 40 ms
51,968 KB
testcase_23 AC 42 ms
52,224 KB
testcase_24 AC 47 ms
58,240 KB
testcase_25 AC 47 ms
57,856 KB
testcase_26 AC 41 ms
51,712 KB
testcase_27 AC 54 ms
57,472 KB
testcase_28 AC 41 ms
51,968 KB
testcase_29 AC 46 ms
57,728 KB
testcase_30 AC 45 ms
57,728 KB
testcase_31 AC 46 ms
57,984 KB
testcase_32 AC 42 ms
52,096 KB
testcase_33 AC 49 ms
57,728 KB
testcase_34 AC 48 ms
58,112 KB
testcase_35 AC 50 ms
58,112 KB
testcase_36 AC 42 ms
51,840 KB
testcase_37 AC 48 ms
57,472 KB
testcase_38 AC 47 ms
58,112 KB
testcase_39 TLE -
testcase_40 AC 54 ms
57,728 KB
testcase_41 AC 111 ms
58,112 KB
testcase_42 AC 1,244 ms
57,728 KB
testcase_43 AC 231 ms
58,112 KB
testcase_44 AC 117 ms
57,728 KB
testcase_45 AC 56 ms
57,984 KB
testcase_46 AC 1,117 ms
57,984 KB
testcase_47 TLE -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for i in range(2,n):
  nn=n
  t=nn%i
  nn//=i
  flg=True
  while nn:
    if t==nn%i:
      nn//=i
    else:
      flg=False
      break
  if flg:
    print(i)
    exit()
# ぞろ目になっても2桁を超えない
st=set()
for i in range(1,int(n**.5)+1):
  if n%i==0:
    st.add(i)
    st.add(n//i)
# n=x*(p+1)=x*p+x
# x:nの約数
for x in st:
  p=n//x
  p-=1
  if p**2+p+1>n and p>1 and n%p==(n//p)%p:
    ans=min(ans,p)
print(ans)
0