結果
問題 | No.1339 循環小数 |
ユーザー | tamura2004 |
提出日時 | 2021-01-21 12:45:07 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 240 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 316,200 KB |
最終ジャッジ日時 | 2024-06-06 18:54:14 |
合計ジャッジ時間 | 7,346 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
17,536 KB |
testcase_01 | AC | 90 ms
12,160 KB |
testcase_02 | AC | 84 ms
12,160 KB |
testcase_03 | AC | 82 ms
12,160 KB |
testcase_04 | AC | 81 ms
11,904 KB |
testcase_05 | AC | 85 ms
12,032 KB |
testcase_06 | AC | 93 ms
12,160 KB |
testcase_07 | AC | 84 ms
11,904 KB |
testcase_08 | AC | 83 ms
12,288 KB |
testcase_09 | AC | 82 ms
12,160 KB |
testcase_10 | AC | 82 ms
12,288 KB |
testcase_11 | AC | 239 ms
27,184 KB |
testcase_12 | AC | 257 ms
33,292 KB |
testcase_13 | AC | 202 ms
27,264 KB |
testcase_14 | AC | 216 ms
28,288 KB |
testcase_15 | AC | 222 ms
29,208 KB |
testcase_16 | AC | 199 ms
24,576 KB |
testcase_17 | AC | 273 ms
36,840 KB |
testcase_18 | AC | 196 ms
26,240 KB |
testcase_19 | AC | 190 ms
26,624 KB |
testcase_20 | AC | 179 ms
25,344 KB |
testcase_21 | TLE | - |
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 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
def solve n = gets.to_s.to_i x = 1 i = 0 cnt = {} while cnt[x].nil? cnt[x] = i x = (x * 10) % n if x.zero? return 1 end i += 1 end return i - cnt[x] end t = gets.to_s.to_i t.times do puts solve end