結果

問題 No.1312 Snake Eyes
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-16 09:32:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 787 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 65,676 KB
最終ジャッジ日時 2024-06-09 11:58:15
合計ジャッジ時間 10,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,712 KB
testcase_01 AC 35 ms
52,084 KB
testcase_02 AC 34 ms
52,284 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 31 ms
53,208 KB
testcase_06 AC 32 ms
52,364 KB
testcase_07 AC 32 ms
52,272 KB
testcase_08 AC 32 ms
52,244 KB
testcase_09 AC 34 ms
52,180 KB
testcase_10 AC 32 ms
52,456 KB
testcase_11 AC 36 ms
52,460 KB
testcase_12 AC 34 ms
52,452 KB
testcase_13 AC 33 ms
53,952 KB
testcase_14 AC 33 ms
52,492 KB
testcase_15 AC 34 ms
52,444 KB
testcase_16 AC 35 ms
53,136 KB
testcase_17 AC 34 ms
52,900 KB
testcase_18 AC 35 ms
52,704 KB
testcase_19 AC 34 ms
52,476 KB
testcase_20 AC 34 ms
52,876 KB
testcase_21 AC 33 ms
53,524 KB
testcase_22 AC 33 ms
52,436 KB
testcase_23 AC 32 ms
53,212 KB
testcase_24 AC 37 ms
58,588 KB
testcase_25 AC 36 ms
58,564 KB
testcase_26 AC 33 ms
53,852 KB
testcase_27 AC 44 ms
58,424 KB
testcase_28 AC 34 ms
52,848 KB
testcase_29 AC 37 ms
58,496 KB
testcase_30 AC 36 ms
59,104 KB
testcase_31 AC 36 ms
58,744 KB
testcase_32 AC 32 ms
52,816 KB
testcase_33 AC 38 ms
58,228 KB
testcase_34 AC 36 ms
59,252 KB
testcase_35 AC 41 ms
58,896 KB
testcase_36 AC 33 ms
53,236 KB
testcase_37 AC 36 ms
59,228 KB
testcase_38 AC 38 ms
58,392 KB
testcase_39 TLE -
testcase_40 AC 43 ms
59,080 KB
testcase_41 AC 96 ms
58,900 KB
testcase_42 AC 1,113 ms
58,292 KB
testcase_43 AC 209 ms
58,880 KB
testcase_44 AC 102 ms
59,416 KB
testcase_45 AC 44 ms
57,968 KB
testcase_46 AC 1,001 ms
58,368 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())
ans=n-1
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>=10**6 and n%p==(n//p)%p:
    ans=min(ans,p)
print(ans)
0