結果
問題 | No.559 swapAB列 |
ユーザー | papinianus |
提出日時 | 2017-08-25 22:58:04 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 542 bytes |
コンパイル時間 | 1,374 ms |
コンパイル使用メモリ | 30,848 KB |
実行使用メモリ | 36,460 KB |
最終ジャッジ日時 | 2024-10-15 16:07:21 |
合計ジャッジ時間 | 4,631 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
36,460 KB |
testcase_01 | WA | - |
testcase_02 | AC | 42 ms
31,340 KB |
testcase_03 | WA | - |
testcase_04 | AC | 41 ms
30,844 KB |
testcase_05 | AC | 42 ms
30,924 KB |
testcase_06 | AC | 42 ms
31,160 KB |
testcase_07 | AC | 41 ms
31,132 KB |
testcase_08 | OLE | - |
testcase_09 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $str = trim(fgets(STDIN)); $act = 0; $lastA = strrpos($str, 'A'); $firstB = strpos($str, 'B'); if($lastA === FALSE || $firstB === FALSE) { echo $act.PHP_EOL; } while($lastA > $firstB) { $len = strlen($str); $pos = $firstB; while($pos < $lastA) { if($str[$pos] == $str[$pos+1]) { $pos++; continue; } $temp = $str[$pos]; $str[$pos] = $str[$pos+1]; $str[$pos+1] = $temp; $act++; $pos++; } $lastA = strrpos($str, 'A'); $firstB = strpos($str, 'B'); } echo $act.PHP_EOL;