結果
| 問題 | No.3388 Sum of Function |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-28 22:28:23 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 71 ms / 2,000 ms |
| コード長 | 490 bytes |
| コンパイル時間 | 347 ms |
| コンパイル使用メモリ | 82,644 KB |
| 実行使用メモリ | 58,436 KB |
| 最終ジャッジ日時 | 2025-11-28 22:28:43 |
| 合計ジャッジ時間 | 2,524 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
a,b = map(int,input().split())
sosuu = []
ans = 0
if a == 1 and b == 1:
print(0)
exit()
sosuulist = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97]
ok = False
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)
if len(sosuu) >= 1 and sosuu[0] == 1:
del sosuu[0]
for x in sosuu:
ans += (x**3)-(x**2)+(x**1)+1
print(ans)