結果

問題 No.1312 Snake Eyes
ユーザー sepa38sepa38
提出日時 2023-03-23 10:57:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 554 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 69,972 KB
最終ジャッジ日時 2024-09-18 15:22:37
合計ジャッジ時間 13,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,472 KB
testcase_01 AC 34 ms
52,084 KB
testcase_02 AC 36 ms
52,464 KB
testcase_03 AC 35 ms
52,272 KB
testcase_04 AC 32 ms
52,612 KB
testcase_05 AC 32 ms
53,596 KB
testcase_06 AC 32 ms
52,760 KB
testcase_07 AC 31 ms
51,964 KB
testcase_08 AC 32 ms
52,768 KB
testcase_09 AC 32 ms
53,228 KB
testcase_10 AC 32 ms
53,448 KB
testcase_11 AC 33 ms
52,400 KB
testcase_12 AC 37 ms
52,484 KB
testcase_13 AC 34 ms
52,080 KB
testcase_14 AC 33 ms
52,340 KB
testcase_15 AC 34 ms
52,572 KB
testcase_16 AC 35 ms
53,688 KB
testcase_17 AC 33 ms
52,692 KB
testcase_18 AC 35 ms
53,100 KB
testcase_19 AC 33 ms
53,992 KB
testcase_20 AC 33 ms
52,816 KB
testcase_21 AC 36 ms
52,256 KB
testcase_22 AC 35 ms
52,288 KB
testcase_23 AC 44 ms
59,972 KB
testcase_24 AC 42 ms
58,488 KB
testcase_25 AC 40 ms
60,156 KB
testcase_26 AC 39 ms
58,684 KB
testcase_27 AC 38 ms
59,764 KB
testcase_28 AC 41 ms
59,432 KB
testcase_29 AC 39 ms
59,436 KB
testcase_30 AC 39 ms
59,360 KB
testcase_31 AC 39 ms
59,440 KB
testcase_32 AC 40 ms
59,732 KB
testcase_33 AC 35 ms
52,644 KB
testcase_34 AC 40 ms
59,408 KB
testcase_35 AC 38 ms
59,836 KB
testcase_36 AC 39 ms
58,764 KB
testcase_37 AC 37 ms
59,904 KB
testcase_38 AC 47 ms
62,472 KB
testcase_39 AC 44 ms
60,488 KB
testcase_40 AC 45 ms
61,548 KB
testcase_41 AC 55 ms
62,064 KB
testcase_42 AC 42 ms
59,688 KB
testcase_43 AC 45 ms
60,016 KB
testcase_44 AC 43 ms
60,660 KB
testcase_45 AC 45 ms
61,004 KB
testcase_46 AC 44 ms
60,232 KB
testcase_47 AC 38 ms
59,588 KB
testcase_48 TLE -
testcase_49 AC 527 ms
62,012 KB
testcase_50 AC 180 ms
60,896 KB
testcase_51 AC 110 ms
61,460 KB
testcase_52 AC 152 ms
60,204 KB
testcase_53 AC 310 ms
61,484 KB
testcase_54 AC 222 ms
61,424 KB
testcase_55 AC 86 ms
60,628 KB
testcase_56 AC 855 ms
63,016 KB
testcase_57 AC 105 ms
61,436 KB
testcase_58 AC 358 ms
60,744 KB
testcase_59 AC 213 ms
61,008 KB
testcase_60 AC 78 ms
61,756 KB
testcase_61 AC 429 ms
61,484 KB
testcase_62 AC 197 ms
62,208 KB
testcase_63 AC 43 ms
61,352 KB
testcase_64 AC 52 ms
60,872 KB
testcase_65 AC 48 ms
60,612 KB
testcase_66 AC 38 ms
58,668 KB
testcase_67 AC 34 ms
54,156 KB
testcase_68 AC 44 ms
60,884 KB
testcase_69 AC 41 ms
60,428 KB
testcase_70 AC 677 ms
61,880 KB
testcase_71 AC 237 ms
61,500 KB
testcase_72 AC 59 ms
61,352 KB
testcase_73 AC 45 ms
60,128 KB
testcase_74 AC 40 ms
59,620 KB
testcase_75 AC 42 ms
60,620 KB
testcase_76 TLE -
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())
if n == 1:
  print(2)
  exit()
if n == 2:
	print(3)
	exit()
ans = n - 1
for k in range(1, n+10):
  if k ** 2 > n:
    break
  if n % k:
  	continue
  for j in range(1, n):
  	p = (n - k) // j
  	if p <= k or j ** 2 > n:
  		break
  	if (n - k) % j:
  		continue
  	tmp = n
  	flg = 1
  	while tmp:
  		if tmp % p != k:
  			flg = 0
  			break
  		tmp //= p
  	if flg:
  		ans = min(ans, p)
  	p = j
  	tmp = n
  	flg = 1
  	while tmp:
  		if tmp % p != k:
  			flg = 0
  			break
  		tmp //= p
  	if flg:
  		ans = min(ans, p)
print(ans)
0