結果
問題 | No.1339 循環小数 |
ユーザー | snrnsidy |
提出日時 | 2021-08-07 15:53:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,028 bytes |
コンパイル時間 | 1,841 ms |
コンパイル使用メモリ | 207,648 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-09-18 19:31:05 |
合計ジャッジ時間 | 5,859 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 11 ms
6,940 KB |
testcase_12 | AC | 12 ms
6,944 KB |
testcase_13 | AC | 9 ms
6,940 KB |
testcase_14 | AC | 10 ms
6,944 KB |
testcase_15 | AC | 10 ms
6,940 KB |
testcase_16 | AC | 9 ms
6,940 KB |
testcase_17 | AC | 11 ms
6,940 KB |
testcase_18 | AC | 8 ms
6,944 KB |
testcase_19 | AC | 8 ms
6,940 KB |
testcase_20 | AC | 7 ms
6,940 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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; map <int, int> res; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int n, t; cin >> t; while (t--) { cin >> n; while (1) { if (n % 2 != 0) break; n /= 2; } while (1) { if (n % 5 != 0) break; n /= 5; } if (n == 1) { cout << 1 << '\n'; } else { if (res.find(n) == res.end()) { int val = 1; for (int i = 1; ; i++) { val *= 10; val %= n; if (val == 1) { res[n] = i; break; } } cout << res[n] << '\n'; } else { cout << res[n] << '\n'; } } } return 0; }