結果
問題 | No.1312 Snake Eyes |
ユーザー | buey_t |
提出日時 | 2023-03-23 10:20:43 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,602 bytes |
コンパイル時間 | 380 ms |
コンパイル使用メモリ | 81,672 KB |
実行使用メモリ | 97,372 KB |
最終ジャッジ日時 | 2024-09-18 15:21:46 |
合計ジャッジ時間 | 10,473 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
90,624 KB |
testcase_01 | AC | 128 ms
84,712 KB |
testcase_02 | AC | 125 ms
84,632 KB |
testcase_03 | AC | 127 ms
84,608 KB |
testcase_04 | AC | 124 ms
84,684 KB |
testcase_05 | AC | 126 ms
84,800 KB |
testcase_06 | AC | 125 ms
84,704 KB |
testcase_07 | AC | 127 ms
84,868 KB |
testcase_08 | AC | 127 ms
84,684 KB |
testcase_09 | AC | 132 ms
84,888 KB |
testcase_10 | AC | 136 ms
84,916 KB |
testcase_11 | AC | 133 ms
84,992 KB |
testcase_12 | AC | 127 ms
84,744 KB |
testcase_13 | AC | 126 ms
84,684 KB |
testcase_14 | AC | 130 ms
84,816 KB |
testcase_15 | AC | 129 ms
85,120 KB |
testcase_16 | AC | 124 ms
84,728 KB |
testcase_17 | AC | 125 ms
85,052 KB |
testcase_18 | AC | 124 ms
84,688 KB |
testcase_19 | AC | 127 ms
84,728 KB |
testcase_20 | AC | 128 ms
84,676 KB |
testcase_21 | AC | 126 ms
84,756 KB |
testcase_22 | AC | 144 ms
89,384 KB |
testcase_23 | AC | 147 ms
89,632 KB |
testcase_24 | AC | 165 ms
89,880 KB |
testcase_25 | AC | 153 ms
89,968 KB |
testcase_26 | AC | 145 ms
89,536 KB |
testcase_27 | AC | 218 ms
89,632 KB |
testcase_28 | AC | 124 ms
84,712 KB |
testcase_29 | AC | 152 ms
89,740 KB |
testcase_30 | AC | 158 ms
89,784 KB |
testcase_31 | AC | 155 ms
89,596 KB |
testcase_32 | AC | 153 ms
89,612 KB |
testcase_33 | AC | 176 ms
90,144 KB |
testcase_34 | AC | 151 ms
89,696 KB |
testcase_35 | AC | 188 ms
89,720 KB |
testcase_36 | AC | 155 ms
89,728 KB |
testcase_37 | AC | 160 ms
89,980 KB |
testcase_38 | AC | 165 ms
90,112 KB |
testcase_39 | TLE | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
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 | -- | - |
ソースコード
def main(): from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum from heapq import heapify, heappop, heappush from bisect import bisect_left, bisect_right from copy import deepcopy import copy import random from collections import deque,Counter,defaultdict from itertools import permutations,combinations from decimal import Decimal,ROUND_HALF_UP #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP) from functools import lru_cache, reduce #@lru_cache(maxsize=None) from operator import add,sub,mul,xor,and_,or_,itemgetter INF = 10**18 mod1 = 10**9+7 mod2 = 998244353 #DecimalならPython ''' ''' def Dec_to_N(num, base): if num >= base: yield from Dec_to_N(num // base, base) yield num % base def N_to_Dec(digits, base): num = 0 for digit in digits: num = num * base + digit return num N = int(input()) for i in range(2,10**9+1): ls = list(Dec_to_N(N,i)) f = True n = ls[0] if n == 0: continue for j in range(len(ls)): if ls[j] != n: f = False break if f: print(i) exit() if __name__ == '__main__': main()