結果

問題 No.3384 1122-like Number (Python)
コンテスト
ユーザー okkuu
提出日時 2025-11-22 13:56:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 143 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 83,960 KB
最終ジャッジ日時 2025-11-22 13:56:09
合計ジャッジ時間 4,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 TLE * 1
other -- * 16
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

m,c=int(input()),0
for n in range(m+1):
 i,*l=2,
 while i*i<=n:
  if n%i:i+=1
  else:n//=i;l+=[i]
 c+=len(l:=l+[n])==4and len({*l})==4
print(c)
0