結果

問題 No.2595 Parsing Challenge
ユーザー ForestedForested
提出日時 2023-12-07 17:03:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 43 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 293,548 KB
最終ジャッジ日時 2024-09-27 11:35:20
合計ジャッジ時間 18,336 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,536 KB
testcase_01 AC 34 ms
52,652 KB
testcase_02 AC 33 ms
51,968 KB
testcase_03 AC 33 ms
53,008 KB
testcase_04 AC 33 ms
52,356 KB
testcase_05 AC 34 ms
51,868 KB
testcase_06 AC 34 ms
53,172 KB
testcase_07 AC 33 ms
52,968 KB
testcase_08 AC 33 ms
51,784 KB
testcase_09 AC 33 ms
52,832 KB
testcase_10 AC 34 ms
52,808 KB
testcase_11 AC 35 ms
53,244 KB
testcase_12 AC 34 ms
52,400 KB
testcase_13 AC 33 ms
52,976 KB
testcase_14 AC 37 ms
52,928 KB
testcase_15 AC 36 ms
53,232 KB
testcase_16 AC 36 ms
52,932 KB
testcase_17 AC 35 ms
52,508 KB
testcase_18 AC 33 ms
53,808 KB
testcase_19 AC 34 ms
52,128 KB
testcase_20 AC 41 ms
57,716 KB
testcase_21 AC 43 ms
57,324 KB
testcase_22 AC 41 ms
56,344 KB
testcase_23 AC 40 ms
56,172 KB
testcase_24 AC 42 ms
57,212 KB
testcase_25 RE -
testcase_26 AC 105 ms
92,600 KB
testcase_27 AC 113 ms
91,020 KB
testcase_28 AC 111 ms
91,392 KB
testcase_29 AC 113 ms
91,200 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 AC 720 ms
265,148 KB
testcase_45 AC 699 ms
265,276 KB
testcase_46 AC 677 ms
265,108 KB
testcase_47 AC 679 ms
265,540 KB
testcase_48 AC 665 ms
265,276 KB
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
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 #

N = int(input())
S = input()
print(eval(S))
0