結果
| 問題 | No.1849 Three Times Value |
| ユーザー |
|
| 提出日時 | 2022-02-27 14:43:06 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 2,000 ms |
| コード長 | 116 bytes |
| 記録 | |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 85,380 KB |
| 実行使用メモリ | 67,180 KB |
| 最終ジャッジ日時 | 2026-03-26 23:06:05 |
| 合計ジャッジ時間 | 2,181 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)