結果
| 問題 | No.3384 1122-like Number (Python) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-22 00:08:30 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 115 bytes |
| 記録 | |
| コンパイル時間 | 275 ms |
| コンパイル使用メモリ | 95,604 KB |
| 実行使用メモリ | 119,292 KB |
| スコア | 0 |
| 最終ジャッジ日時 | 2026-07-16 21:59:37 |
| 合計ジャッジ時間 | 9,419 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | AC * 1 RE * 15 |
コンパイルメッセージ
Main.py:4: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? for j in range(2*i,l[i]or n,i):l[j]+=1*4(j//i%i<1)
ソースコード
n=int(input())+1 l=[0]*n for i in range(2,n): for j in range(2*i,l[i]or n,i):l[j]+=1*4(j//i%i<1) print(l.count(4))