結果
| 問題 |
No.3384 1122-like Number (Python)
|
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2025-11-22 15:19:36 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 129 bytes |
| コンパイル時間 | 334 ms |
| コンパイル使用メモリ | 82,244 KB |
| 実行使用メモリ | 103,320 KB |
| 最終ジャッジ日時 | 2025-11-22 15:19:52 |
| 合計ジャッジ時間 | 14,219 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 TLE * 1 |
| other | AC * 13 TLE * 3 |
ソースコード
n=int(input());p=[0]*(n+1) for i in range(2,n): v=p[i]==0 for j in range(i,n+1,i): p[j]+=v if j%i**2 else 5 print(p.count(4))