結果

問題 No.2595 Parsing Challenge
ユーザー t98slider
提出日時 2023-12-23 23:25:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 165 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 128,384 KB
最終ジャッジ日時 2024-09-27 12:41:25
合計ジャッジ時間 12,796 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 25 TLE * 1 -- * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(1000000)

N = input()
S = input()
T = ""
for c in S:
    if c == '/':
        T += "//"
    else:
        T += c
print(eval(T))
0