結果

問題 No.1312 Snake Eyes
ユーザー titiatitia
提出日時 2020-12-15 07:05:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 75,764 KB
最終ジャッジ日時 2024-09-20 01:27:17
合計ジャッジ時間 19,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,396 KB
testcase_01 AC 36 ms
52,556 KB
testcase_02 AC 38 ms
53,152 KB
testcase_03 AC 37 ms
52,836 KB
testcase_04 AC 38 ms
52,512 KB
testcase_05 AC 36 ms
52,760 KB
testcase_06 AC 36 ms
52,280 KB
testcase_07 AC 35 ms
52,336 KB
testcase_08 AC 34 ms
52,036 KB
testcase_09 AC 35 ms
52,332 KB
testcase_10 AC 35 ms
52,892 KB
testcase_11 AC 35 ms
52,396 KB
testcase_12 AC 38 ms
52,940 KB
testcase_13 AC 36 ms
52,756 KB
testcase_14 AC 37 ms
52,544 KB
testcase_15 AC 36 ms
52,352 KB
testcase_16 AC 35 ms
52,752 KB
testcase_17 AC 36 ms
53,544 KB
testcase_18 AC 35 ms
53,256 KB
testcase_19 AC 35 ms
52,152 KB
testcase_20 AC 33 ms
52,560 KB
testcase_21 AC 35 ms
52,348 KB
testcase_22 AC 36 ms
52,704 KB
testcase_23 AC 34 ms
53,352 KB
testcase_24 AC 51 ms
75,608 KB
testcase_25 AC 41 ms
63,784 KB
testcase_26 AC 34 ms
52,872 KB
testcase_27 AC 67 ms
75,324 KB
testcase_28 AC 36 ms
52,556 KB
testcase_29 AC 41 ms
59,840 KB
testcase_30 AC 42 ms
58,624 KB
testcase_31 AC 42 ms
62,444 KB
testcase_32 AC 36 ms
52,520 KB
testcase_33 AC 56 ms
75,348 KB
testcase_34 AC 41 ms
58,756 KB
testcase_35 AC 56 ms
75,600 KB
testcase_36 AC 39 ms
58,244 KB
testcase_37 AC 45 ms
68,700 KB
testcase_38 AC 43 ms
65,600 KB
testcase_39 WA -
testcase_40 AC 64 ms
75,272 KB
testcase_41 AC 190 ms
75,280 KB
testcase_42 WA -
testcase_43 AC 429 ms
75,496 KB
testcase_44 AC 190 ms
75,392 KB
testcase_45 AC 66 ms
74,996 KB
testcase_46 WA -
testcase_47 AC 890 ms
75,432 KB
testcase_48 AC 127 ms
74,992 KB
testcase_49 AC 176 ms
75,128 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 475 ms
75,260 KB
testcase_55 WA -
testcase_56 AC 101 ms
75,308 KB
testcase_57 WA -
testcase_58 AC 257 ms
75,292 KB
testcase_59 AC 77 ms
75,664 KB
testcase_60 WA -
testcase_61 AC 181 ms
75,060 KB
testcase_62 AC 84 ms
75,364 KB
testcase_63 AC 37 ms
52,392 KB
testcase_64 AC 36 ms
52,448 KB
testcase_65 AC 35 ms
52,020 KB
testcase_66 AC 38 ms
52,512 KB
testcase_67 AC 38 ms
53,008 KB
testcase_68 AC 37 ms
52,072 KB
testcase_69 AC 35 ms
52,736 KB
testcase_70 AC 35 ms
53,028 KB
testcase_71 AC 37 ms
52,400 KB
testcase_72 AC 35 ms
52,224 KB
testcase_73 AC 36 ms
53,292 KB
testcase_74 AC 37 ms
53,092 KB
testcase_75 AC 37 ms
52,068 KB
testcase_76 AC 133 ms
75,436 KB
testcase_77 AC 873 ms
75,052 KB
testcase_78 AC 130 ms
75,324 KB
testcase_79 AC 36 ms
52,216 KB
testcase_80 AC 142 ms
75,376 KB
testcase_81 AC 108 ms
75,400 KB
testcase_82 AC 44 ms
64,936 KB
testcase_83 AC 153 ms
75,068 KB
testcase_84 AC 862 ms
75,240 KB
testcase_85 AC 35 ms
51,868 KB
testcase_86 AC 34 ms
53,012 KB
testcase_87 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(N,x):
    A=N%x
    i=1
    while N:
        r=N%x
        if r!=A:
            return 0
        N//=x
    return 1
    

N=int(input())

for x in range(2,10**7):
    if calc(N,x)==1:
        print(x)
        break
else:
    print(N-1)
0