結果

問題 No.550 夏休みの思い出(1)
ユーザー pekempeypekempey
提出日時 2017-07-29 01:59:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 1,097 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 75,816 KB
最終ジャッジ日時 2024-10-11 05:38:44
合計ジャッジ時間 19,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
75,392 KB
testcase_01 AC 283 ms
75,136 KB
testcase_02 AC 292 ms
75,392 KB
testcase_03 AC 287 ms
75,256 KB
testcase_04 AC 288 ms
75,568 KB
testcase_05 AC 288 ms
75,136 KB
testcase_06 AC 290 ms
75,272 KB
testcase_07 AC 291 ms
75,520 KB
testcase_08 AC 283 ms
75,440 KB
testcase_09 AC 291 ms
75,648 KB
testcase_10 AC 292 ms
75,648 KB
testcase_11 AC 290 ms
75,288 KB
testcase_12 AC 292 ms
75,404 KB
testcase_13 AC 294 ms
75,264 KB
testcase_14 AC 320 ms
75,336 KB
testcase_15 AC 368 ms
75,572 KB
testcase_16 AC 320 ms
75,296 KB
testcase_17 AC 290 ms
75,424 KB
testcase_18 AC 292 ms
75,516 KB
testcase_19 AC 290 ms
75,352 KB
testcase_20 AC 283 ms
75,444 KB
testcase_21 AC 286 ms
75,392 KB
testcase_22 AC 295 ms
75,572 KB
testcase_23 AC 297 ms
75,504 KB
testcase_24 AC 299 ms
75,520 KB
testcase_25 AC 296 ms
75,520 KB
testcase_26 AC 301 ms
75,324 KB
testcase_27 AC 298 ms
75,184 KB
testcase_28 AC 296 ms
75,052 KB
testcase_29 AC 300 ms
75,428 KB
testcase_30 AC 294 ms
75,520 KB
testcase_31 AC 289 ms
75,340 KB
testcase_32 AC 285 ms
75,048 KB
testcase_33 AC 293 ms
75,376 KB
testcase_34 AC 296 ms
75,600 KB
testcase_35 AC 292 ms
75,320 KB
testcase_36 AC 291 ms
75,240 KB
testcase_37 AC 289 ms
75,260 KB
testcase_38 AC 297 ms
75,384 KB
testcase_39 AC 290 ms
75,432 KB
testcase_40 AC 290 ms
75,816 KB
testcase_41 AC 290 ms
75,264 KB
testcase_42 AC 296 ms
75,288 KB
testcase_43 AC 293 ms
75,056 KB
testcase_44 AC 298 ms
75,776 KB
testcase_45 AC 293 ms
75,140 KB
testcase_46 AC 297 ms
75,776 KB
testcase_47 AC 303 ms
75,720 KB
testcase_48 AC 291 ms
75,324 KB
testcase_49 AC 266 ms
75,264 KB
testcase_50 AC 272 ms
75,112 KB
testcase_51 AC 292 ms
75,392 KB
testcase_52 AC 292 ms
75,288 KB
testcase_53 AC 293 ms
75,012 KB
testcase_54 AC 294 ms
75,128 KB
testcase_55 AC 294 ms
75,544 KB
testcase_56 AC 293 ms
75,492 KB
testcase_57 AC 292 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = map(int, input().split())
MOD = 33331

f = lambda x: x**3 + a*x**2 + b*x + c
ans = set()
for i in (i for i in range(MOD) if f(i) % MOD == 0):
    ans |= set(j for j in range(i - MOD**2, MOD**2, MOD) if f(j) == 0)
print(*sorted(ans))
0