結果
| 問題 |
No.3028 No.9999
|
| コンテスト | |
| ユーザー |
nikoro256
|
| 提出日時 | 2025-02-21 21:43:40 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 105 bytes |
| コンパイル時間 | 456 ms |
| コンパイル使用メモリ | 82,336 KB |
| 実行使用メモリ | 60,140 KB |
| 最終ジャッジ日時 | 2025-02-21 21:43:57 |
| 合計ジャッジ時間 | 9,233 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 TLE * 1 -- * 2 |
ソースコード
N=int(input())
t=10
c=1
while True:
if t==1:
print(c)
exit()
t=(t*10)%N
c+=1
nikoro256