結果
問題 | No.1339 循環小数 |
ユーザー | persimmon-persimmon |
提出日時 | 2021-02-12 11:33:16 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 311 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 520,484 KB |
最終ジャッジ日時 | 2024-07-19 05:44:01 |
合計ジャッジ時間 | 6,353 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,344 KB |
testcase_01 | AC | 47 ms
59,520 KB |
testcase_02 | AC | 47 ms
59,136 KB |
testcase_03 | AC | 42 ms
59,136 KB |
testcase_04 | AC | 49 ms
59,136 KB |
testcase_05 | AC | 49 ms
59,392 KB |
testcase_06 | AC | 45 ms
60,160 KB |
testcase_07 | AC | 44 ms
59,264 KB |
testcase_08 | AC | 44 ms
59,776 KB |
testcase_09 | AC | 46 ms
60,160 KB |
testcase_10 | AC | 48 ms
59,520 KB |
testcase_11 | AC | 146 ms
116,852 KB |
testcase_12 | AC | 153 ms
107,064 KB |
testcase_13 | AC | 129 ms
112,716 KB |
testcase_14 | AC | 137 ms
104,396 KB |
testcase_15 | AC | 139 ms
100,096 KB |
testcase_16 | AC | 126 ms
94,316 KB |
testcase_17 | AC | 156 ms
111,276 KB |
testcase_18 | AC | 106 ms
91,636 KB |
testcase_19 | AC | 112 ms
94,464 KB |
testcase_20 | AC | 110 ms
93,056 KB |
testcase_21 | MLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
def main(n): now=1 while now<n:now*=10 d={} cnt=1 while True: now%=n if now==0:return 1 if now in d:return cnt-d[now] d[now]=cnt now*=10 cnt+=1 if __name__=='__main__': t=int(input()) cases=[int(input()) for _ in range(t)] for n in cases: ret=main(n) print(ret)