結果

問題 No.3384 1122-like Number (Python)
コンテスト
ユーザー alcea
提出日時 2025-11-22 00:08:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 115 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 93,912 KB
最終ジャッジ日時 2025-11-22 12:39:49
合計ジャッジ時間 3,090 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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)

ソースコード

diff #
raw source code

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))
0