結果

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

ソースコード

diff #

import sys
sys.set_int_max_str_digits(-1)
n = int(input())
print(eval(input()))
0