結果
| 問題 | No.3264 岩井数 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-09-06 14:45:02 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 64 ms / 2,000 ms |
| + 653µs | |
| コード長 | 125 bytes |
| 記録 | |
| コンパイル時間 | 247 ms |
| コンパイル使用メモリ | 96,100 KB |
| 実行使用メモリ | 78,976 KB |
| 最終ジャッジ日時 | 2026-07-14 20:32:23 |
| 合計ジャッジ時間 | 7,097 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 30 |
ソースコード
n = int(input())
while len(str(n)) <= 10:
n_length = len(str(n))
num = 10**n_length + 1
n *= num
print(n)