結果

問題 No.3240 Count 8 Included Numbers (Easy)
ユーザー pluto77
提出日時 2025-09-25 16:40:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 124 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 53,940 KB
最終ジャッジ日時 2025-09-25 16:40:58
合計ジャッジ時間 3,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 10 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
l=[]
for i in range(N):
 l.append(i)
cnt=1
for i in range(len(l)):
 if '8' in str(l[i]):
  cnt+=1
print(cnt)
0