結果
問題 | No.22 括弧の対応 |
ユーザー | d_nishiyama85 |
提出日時 | 2015-04-27 00:41:20 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 661 bytes |
コンパイル時間 | 1,775 ms |
コンパイル使用メモリ | 29,948 KB |
実行使用メモリ | 31,040 KB |
最終ジャッジ日時 | 2024-07-05 03:20:17 |
合計ジャッジ時間 | 3,528 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 40 ms
30,644 KB |
testcase_02 | AC | 40 ms
30,540 KB |
testcase_03 | AC | 40 ms
30,844 KB |
testcase_04 | AC | 40 ms
30,636 KB |
testcase_05 | AC | 39 ms
31,040 KB |
testcase_06 | WA | - |
testcase_07 | AC | 39 ms
30,672 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 39 ms
30,704 KB |
testcase_11 | AC | 39 ms
30,392 KB |
testcase_12 | WA | - |
testcase_13 | AC | 40 ms
30,800 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php list($N, $K) = explode(" ", trim(fgets(STDIN))); $S = trim(fgets(STDIN)); $map = []; $depth = 0; $targetDepth = 0; // まず開きカッコかとじカッコかを調査 $target = $S[$K]; if ($target == '(') { for ($i = 0; $i < $N; $i++) { if ($S[$i] == '(') { $depth++; if ($i == $K - 1) { $targetDepth = $depth; } } else { if ($depth == $targetDepth) { break; } $depth--; } } } else { for ($i = $N - 1; $i >= 0; $i--) { if ($S[$i] == ')') { $depth++; if ($i == $K - 1) { $targetDepth = $depth; } } else { if ($depth == $targetDepth) { break; } $depth--; } } } echo ($i + 1) . "\n";