結果

問題 No.3388 Sum of Function
コンテスト
ユーザー しゃとる
提出日時 2025-11-28 22:14:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 59,060 KB
最終ジャッジ日時 2025-11-28 22:15:34
合計ジャッジ時間 2,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

a,b = map(int,input().split())
sosuu = []
ans = 0
for i in range(a,b+1):
    ok = True
    for j in range(2,i):
        if i%j == 0:
            ok = False
            break
    if ok:
        sosuu.append(i)
for x in sosuu:
    ans += x**3-x**2+x**1+1
print(ans)
0