結果

問題 No.3384 1122-like Number (Python)
コンテスト
ユーザー 👑 loop0919
提出日時 2025-11-22 15:01:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 154 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 103,564 KB
最終ジャッジ日時 2025-11-22 15:01:42
合計ジャッジ時間 16,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2 TLE * 1
other AC * 1 WA * 12 TLE * 3
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

n=int(input());p=[1]*(n+1);p[0]=p[1]=0
for i in range(2,n):
 if p[i]>1:continue
 for j in range(2*i,n+1,i):
  while j%i==0:p[i]+=1;j//=i
print(p.count(4))
0