結果
問題 | No.708 (+ー)の式 |
ユーザー | tatt61880 |
提出日時 | 2020-04-14 03:29:21 |
言語 | Kuin (KuinC++ v.2021.9.17) |
結果 |
RE
|
実行時間 | - |
コード長 | 532 bytes |
コンパイル時間 | 2,183 ms |
コンパイル使用メモリ | 143,896 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-16 10:32:34 |
合計ジャッジ時間 | 4,616 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
コンパイルメッセージ
out.cpp:1877:1: warning: non-void function does not return a value in all control paths [-Wreturn-type] } ^ 1 warning generated.
ソースコード
func f(s: []char, i: &int): int var res: int :: @g(s, &i) while(true) switch c(s[i]) case '+', '-' do i :+ 1 do res :+ @g(s, &i) * (c = '-' ?(-1, 1)) default do i :+ 1 ret res end switch end while end func func g(s: []char, i: &int): int switch c(s[i]) case '0' to '9' do i :+ 1 ret c $ int - '0' $ int case '(' do i :+ 1 ret @f(s, &i) end switch end func func main() var s: []char :: cui@input() var n: int :: ^s var i: int :: 0 var ans: int :: @f(s, &i) do cui@print("\{ans}\n") end func