結果
問題 | No.1849 Three Times Value |
ユーザー |
![]() |
提出日時 | 2022-12-23 00:13:38 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 162 bytes |
コンパイル時間 | 220 ms |
コンパイル使用メモリ | 82,232 KB |
実行使用メモリ | 69,912 KB |
最終ジャッジ日時 | 2024-11-18 03:45:20 |
合計ジャッジ時間 | 2,255 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 WA * 2 |
ソースコード
n = int(input())ans = 0now = 1t = str(now) + str(now) + str(now)while int(t)<n:ans += 1now += 1t = str(now) + str(now) + str(now)print(ans)