結果
問題 |
No.3264 岩井数
|
ユーザー |
|
提出日時 | 2025-09-06 15:37:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 195 bytes |
コンパイル時間 | 229 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 59,852 KB |
最終ジャッジ日時 | 2025-09-06 15:38:05 |
合計ジャッジ時間 | 4,513 ms |
ジャッジサーバーID (参考情報) |
judge / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 WA * 21 |
ソースコード
def readint(): return map(int, input().split()) n = int(input()) mod = 1 for k in range(1, 2001): mod = (mod * 10) % n if mod == 1 and k >= 10: print("9" * k) break