結果

問題 No.2595 Parsing Challenge
ユーザー hiro1729
提出日時 2023-12-23 07:53:51
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 82 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 311,548 KB
最終ジャッジ日時 2024-09-27 12:13:16
合計ジャッジ時間 24,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 41 RE * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(10**9)
n = int(input())
print(eval(input()))
0