結果
問題 | No.548 国士無双 |
ユーザー | ShinichiU |
提出日時 | 2017-07-29 15:19:31 |
言語 | PHP (8.3.4) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 770 bytes |
コンパイル時間 | 1,102 ms |
コンパイル使用メモリ | 31,892 KB |
実行使用メモリ | 32,524 KB |
最終ジャッジ日時 | 2024-09-17 13:40:48 |
合計ジャッジ時間 | 1,860 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
32,144 KB |
testcase_01 | AC | 39 ms
32,272 KB |
testcase_02 | AC | 37 ms
32,272 KB |
testcase_03 | AC | 38 ms
32,272 KB |
testcase_04 | AC | 38 ms
32,272 KB |
testcase_05 | AC | 35 ms
32,276 KB |
testcase_06 | AC | 37 ms
32,020 KB |
testcase_07 | AC | 37 ms
32,276 KB |
testcase_08 | AC | 38 ms
32,404 KB |
testcase_09 | AC | 37 ms
32,148 KB |
testcase_10 | AC | 37 ms
32,400 KB |
testcase_11 | AC | 37 ms
32,400 KB |
testcase_12 | AC | 38 ms
32,400 KB |
testcase_13 | AC | 37 ms
32,144 KB |
testcase_14 | AC | 35 ms
32,276 KB |
testcase_15 | AC | 35 ms
32,272 KB |
testcase_16 | AC | 35 ms
32,396 KB |
testcase_17 | AC | 36 ms
32,272 KB |
testcase_18 | AC | 35 ms
32,272 KB |
testcase_19 | AC | 35 ms
32,404 KB |
testcase_20 | WA | - |
testcase_21 | AC | 36 ms
32,276 KB |
testcase_22 | AC | 36 ms
32,144 KB |
testcase_23 | AC | 35 ms
32,524 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
#!/usr/bin/env php <?php $baseStr = 'abcdefghijklm'; $bases = []; for ($j = 0; $j < strlen($baseStr); $j++) { $bases[] = $baseStr[$j]; } $str = trim(fgets(STDIN)); $arr = []; for ($i = 0; $i < 13; $i++) { if (array_key_exists($str[$i], $arr)) { $arr[$str[$i]]++; } else { $arr[$str[$i]] = 1; } } $max = max($arr); if ($max > 2) { ng(); } function add_check($str, $arr) { if (!isset($arr[$str])) { return true; } $max = max($arr); if ($arr[$str] != 2 && $max == $arr[$str]) { return true; } return false; } $isOk = false; foreach ($bases as $base) { if (add_check($base, $arr)) { $isOk = true; echo $base, PHP_EOL; } } if (!$isOk) { ng(); } function ng() { echo 'Impossible', PHP_EOL; exit; }