結果
問題 | No.2595 Parsing Challenge |
ユーザー | lanegue |
提出日時 | 2023-12-23 11:29:10 |
言語 | D (dmd 2.109.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,053 bytes |
コンパイル時間 | 3,422 ms |
コンパイル使用メモリ | 155,696 KB |
実行使用メモリ | 60,080 KB |
最終ジャッジ日時 | 2024-09-27 12:20:09 |
合計ジャッジ時間 | 15,747 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
43,604 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,948 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 6 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | AC | 5 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | AC | 5 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 43 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | AC | 42 ms
6,944 KB |
testcase_30 | WA | - |
testcase_31 | AC | 481 ms
56,008 KB |
testcase_32 | AC | 474 ms
52,932 KB |
testcase_33 | AC | 940 ms
59,592 KB |
testcase_34 | AC | 708 ms
60,080 KB |
testcase_35 | TLE | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
ソースコード
import std.stdio; import std.string; import std.conv; import std.bigint; import std.container.slist; string[] lex(string s){ string[] result; long i = 0; while(i < s.length){ switch(s[i]){ case '+', '-', '*', '(', ')': result ~= s[i .. i + 1]; i++; break; default: auto j = i; while(i < s.length && s[i] >= '0' && s[i] <= '9'){ i++; } result ~= s[j .. i]; } } return result; } int[string] priority = ["+" : 2, "-" : 2, "*" : 1, "(" : 3]; string[] rpn(string[] l){ string[] result; auto stack = SList!string(); auto minus = false; foreach(i, s; l){ auto p = priority.get(s, 0); switch(s){ case ")": while(!stack.empty && stack.front != "("){ result ~= stack.front; stack.removeFront; } stack.removeFront; break; case "(": stack.insert(s); break; case "-": if(stack.empty || l[i - 1] in priority){ minus = !minus; break; } goto default; default: while(!stack.empty && p >= priority.get(stack.front, 0)){ result ~= stack.front; stack.removeFront; } if(minus){ s = "-" ~ s; } minus = false; stack.insert(s); } } while(!stack.empty){ result ~= stack.front; stack.removeFront; } return result; } BigInt eval(string[] l){ auto stack = SList!BigInt(); foreach(s; l){ switch(s){ case "+": auto a = stack.front; stack.removeFront; stack.front += a; break; case "-": auto a = stack.front; stack.removeFront; stack.front -= a; break; case "*": auto a = stack.front; stack.removeFront; stack.front *= a; break; default: stack.insert(BigInt(s)); } } return stack.front; } void main(){ auto N = readln.chomp.to!long; auto S = readln.chomp; writeln(S.lex.rpn.eval); }