結果
| 問題 | No.1849 Three Times Value |
| ユーザー |
|
| 提出日時 | 2022-02-24 20:03:02 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 35 ms / 2,000 ms |
| コード長 | 125 bytes |
| 記録 | |
| コンパイル時間 | 134 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 65,920 KB |
| 最終ジャッジ日時 | 2026-03-23 21:53:23 |
| 合計ジャッジ時間 | 1,819 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
N = int(input())
ans = 0
for i in range(1,10 ** 6):
t = int(str(i) * 3)
if t <= N:ans += 1
else:break
print(ans)