結果
問題 | No.2021 Not A but B |
ユーザー | SK |
提出日時 | 2022-12-29 15:50:02 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 221 bytes |
コンパイル時間 | 1,218 ms |
コンパイル使用メモリ | 32,272 KB |
実行使用メモリ | 834,620 KB |
最終ジャッジ日時 | 2024-11-24 17:55:11 |
合計ジャッジ時間 | 17,693 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $n = trim(fgets(STDIN)); $s = trim(fgets(STDIN)); $ans = 1; for ($i = 1; $i <= $n; $i++) { $S[$i] = substr_replace($s,"BB",$i,$i+1); if ($S[$i] !== $S[$i-1] && $S[$i] !== $s) { $ans++; } } echo $ans; ?>