結果
| 問題 | No.3384 1122-like Number (Python) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-22 13:39:11 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 138 bytes |
| 記録 | |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 95,856 KB |
| 実行使用メモリ | 90,240 KB |
| スコア | 73 |
| 最終ジャッジ日時 | 2026-07-16 22:08:04 |
| 合計ジャッジ時間 | 4,879 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 TLE * 1 |
| other | -- * 16 |
ソースコード
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)