結果

問題 No.163 cAPSlOCK
ユーザー sorchsorch
提出日時 2020-07-26 10:22:08
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 561 bytes
コンパイル時間 791 ms
コンパイル使用メモリ 31,036 KB
実行使用メモリ 31,132 KB
最終ジャッジ日時 2024-06-28 04:04:45
合計ジャッジ時間 2,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,700 KB
testcase_01 AC 41 ms
30,860 KB
testcase_02 AC 41 ms
30,896 KB
testcase_03 AC 41 ms
30,628 KB
testcase_04 AC 41 ms
30,880 KB
testcase_05 AC 40 ms
30,804 KB
testcase_06 AC 40 ms
30,576 KB
testcase_07 AC 40 ms
30,880 KB
testcase_08 AC 40 ms
30,800 KB
testcase_09 AC 41 ms
30,860 KB
testcase_10 AC 41 ms
30,732 KB
testcase_11 AC 41 ms
30,628 KB
testcase_12 AC 40 ms
30,716 KB
testcase_13 AC 40 ms
30,920 KB
testcase_14 AC 40 ms
30,568 KB
testcase_15 AC 40 ms
30,896 KB
testcase_16 AC 40 ms
30,828 KB
testcase_17 AC 41 ms
31,132 KB
testcase_18 AC 41 ms
30,888 KB
testcase_19 AC 41 ms
30,896 KB
testcase_20 AC 42 ms
30,944 KB
testcase_21 AC 41 ms
30,956 KB
testcase_22 AC 41 ms
30,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

/**
 * No.163 cAPSlOCK
 * 
 * @see https://yukicoder.me/problems/339
 */

$expectedPasswordChars = str_split(trim(fgets(STDIN)));
$passwprdOnCapsLockChars = [];

while(count($expectedPasswordChars)) {
    $hasReplaced = false;
    $char = array_shift($expectedPasswordChars);
    $replacedChar = strtolower($char);
    if ($replacedChar != $char) {
        $hasReplaced = true;
    }
    if(!$hasReplaced) {
        $replacedChar = strtoupper($char);
    }
    $passwprdOnCapsLockChars[] = $replacedChar;
}

echo implode($passwprdOnCapsLockChars) . "\n";
0