結果

問題 No.3384 1122-like Number (Python)
コンテスト
ユーザー Yu_212
提出日時 2025-11-22 15:20:02
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 111 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 125,500 KB
最終ジャッジ日時 2025-11-22 15:20:09
合計ジャッジ時間 5,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other AC * 1 RE * 15
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

n=int(input())+1
l=[0]*n
for i in range(2,n):
 for j in range(i,l[i]or n,i):l[j]+=5**0**j/i%i
print(l.count(4))
0