結果
| 問題 |
No.1849 Three Times Value
|
| ユーザー |
|
| 提出日時 | 2022-02-27 14:43:06 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 53 ms / 2,000 ms |
| コード長 | 116 bytes |
| コンパイル時間 | 202 ms |
| コンパイル使用メモリ | 82,332 KB |
| 実行使用メモリ | 65,664 KB |
| 最終ジャッジ日時 | 2024-07-05 14:20:00 |
| 合計ジャッジ時間 | 2,392 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
n = int(input())
ans = 0
i = 1
while 1:
x = int(str(i) * 3)
if x > n:
break
i += 1
print(i - 1)