結果

問題 No.2595 Parsing Challenge
ユーザー t98slidert98slider
提出日時 2023-12-23 23:32:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 79 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 202,516 KB
最終ジャッジ日時 2024-09-27 12:48:29
合計ジャッジ時間 20,212 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,368 KB
testcase_05 AC 30 ms
10,368 KB
testcase_06 AC 29 ms
10,368 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,368 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 29 ms
10,368 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 30 ms
10,368 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 35 ms
12,544 KB
testcase_21 AC 35 ms
12,800 KB
testcase_22 AC 36 ms
12,416 KB
testcase_23 AC 34 ms
12,160 KB
testcase_24 AC 36 ms
12,672 KB
testcase_25 AC 171 ms
26,532 KB
testcase_26 AC 92 ms
32,768 KB
testcase_27 AC 88 ms
31,744 KB
testcase_28 AC 89 ms
32,128 KB
testcase_29 AC 90 ms
31,744 KB
testcase_30 AC 590 ms
193,356 KB
testcase_31 AC 590 ms
200,368 KB
testcase_32 AC 603 ms
202,516 KB
testcase_33 AC 596 ms
187,016 KB
testcase_34 AC 598 ms
196,040 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 1,982 ms
19,772 KB
testcase_41 AC 1,974 ms
19,896 KB
testcase_42 AC 1,987 ms
19,896 KB
testcase_43 RE -
testcase_44 AC 564 ms
198,108 KB
testcase_45 AC 559 ms
198,052 KB
testcase_46 AC 558 ms
197,908 KB
testcase_47 AC 559 ms
197,852 KB
testcase_48 AC 563 ms
197,828 KB
testcase_49 AC 1,027 ms
195,336 KB
testcase_50 AC 1,023 ms
195,396 KB
testcase_51 AC 1,031 ms
195,092 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(1000001)
N = input()
print(eval(input()))
0