結果
| 問題 | No.1849 Three Times Value |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2022-02-24 20:05:18 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 68 ms / 2,000 ms |
| + 305µs | |
| コード長 | 91 bytes |
| 記録 | |
| コンパイル時間 | 225 ms |
| コンパイル使用メモリ | 95,720 KB |
| 実行使用メモリ | 83,584 KB |
| 最終ジャッジ日時 | 2026-08-04 02:01:48 |
| 合計ジャッジ時間 | 3,502 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
def f(x):
return int(str(x)*3)
N=int(input())
x=0
while f(x+1)<=N:
x+=1
print(x)
Kazun