結果

問題 No.3384 1122-like Number (Python)
コンテスト
ユーザー okkuu
提出日時 2025-11-22 13:39:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 138 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 83,932 KB
最終ジャッジ日時 2025-11-22 13:39:16
合計ジャッジ時間 4,384 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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])==len({*l})==4
print(c)
0