結果
問題 | No.2595 Parsing Challenge |
ユーザー | lanegue |
提出日時 | 2023-12-23 12:10:55 |
言語 | D (dmd 2.109.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,066 bytes |
コンパイル時間 | 2,796 ms |
コンパイル使用メモリ | 155,024 KB |
実行使用メモリ | 43,760 KB |
最終ジャッジ日時 | 2024-09-27 12:21:29 |
合計ジャッジ時間 | 14,980 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 6 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | AC | 6 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | AC | 6 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 41 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | AC | 43 ms
6,940 KB |
testcase_30 | WA | - |
testcase_31 | AC | 660 ms
41,360 KB |
testcase_32 | AC | 673 ms
39,376 KB |
testcase_33 | AC | 1,047 ms
43,284 KB |
testcase_34 | AC | 879 ms
40,644 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; string[] rpn(string[] l){ string[] result; auto stack = SList!string(); 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){ stack.insert("!"); break; } goto default; default: while(!stack.empty && p >= priority.get(stack.front, 0)){ result ~= stack.front; stack.removeFront; } stack.insert(s); } } while(!stack.empty){ result ~= stack.front; stack.removeFront; } //stderr.writeln(result); 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; case "!": stack.front *= -1; break; default: stack.insert(BigInt(s)); } } return stack.front; } void main(){ auto N = readln.chomp.to!long; auto S = readln.chomp; priority = ["+" : 3, "-" : 3, "*" : 2, "(" : 4, "!" : 1]; writeln(S.lex.rpn.eval); }