結果
問題 |
No.3264 岩井数
|
ユーザー |
|
提出日時 | 2025-09-06 14:19:31 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 287 bytes |
コンパイル時間 | 201 ms |
コンパイル使用メモリ | 82,028 KB |
実行使用メモリ | 91,516 KB |
最終ジャッジ日時 | 2025-09-06 14:19:40 |
合計ジャッジ時間 | 6,735 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 2 |
other | TLE * 1 -- * 29 |
ソースコード
def ip():return int(input()) def mp():return map(int, input().split()) def lmp():return list(map(int, input().split())) # 岩プロコン2 F No.3264 岩井数 N = ip() i = 1000 while True: si = str(i) ti = int(si + si[::-1] + '9') if ti % N == 0: print(ti) exit() i += 1