結果
問題 |
No.3240 Count 8 Included Numbers (Easy)
|
ユーザー |
|
提出日時 | 2025-08-22 21:06:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 2,000 ms |
コード長 | 83 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 53,740 KB |
最終ジャッジ日時 | 2025-08-22 21:06:17 |
合計ジャッジ時間 | 1,646 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 16 |
ソースコード
n=int(input()) ans=0 for i in range(1,n+1): if'8'in str(i): ans+=1 print(ans)