結果
| 問題 | No.3388 Sum of Function |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-28 22:23:03 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 605 bytes |
| コンパイル時間 | 469 ms |
| コンパイル使用メモリ | 82,672 KB |
| 実行使用メモリ | 59,984 KB |
| 最終ジャッジ日時 | 2025-11-28 22:23:55 |
| 合計ジャッジ時間 | 2,184 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 WA * 2 |
ソースコード
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
if a == b:
for i in sosuulist:
if a == i:
ok = True
break
if ok:
x = a
ans = (x**3)-(x**2)+(x**1)+1
print(ans)
exit()
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)