結果

問題 No.2063 ±2^k operations (easy)
ユーザー iwotiwot
提出日時 2022-09-08 13:45:34
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 3,029 ms
コンパイル使用メモリ 31,892 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-05-03 08:42:13
合計ジャッジ時間 4,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
30,772 KB
testcase_01 AC 39 ms
31,016 KB
testcase_02 AC 38 ms
31,104 KB
testcase_03 AC 37 ms
31,100 KB
testcase_04 AC 38 ms
31,004 KB
testcase_05 AC 37 ms
31,252 KB
testcase_06 AC 37 ms
31,008 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 37 ms
31,000 KB
testcase_11 AC 36 ms
30,972 KB
testcase_12 AC 43 ms
30,832 KB
testcase_13 AC 36 ms
30,808 KB
testcase_14 AC 37 ms
31,104 KB
testcase_15 WA -
testcase_16 AC 37 ms
31,296 KB
testcase_17 AC 44 ms
30,880 KB
testcase_18 AC 47 ms
31,256 KB
testcase_19 AC 43 ms
31,044 KB
testcase_20 AC 43 ms
30,916 KB
testcase_21 AC 41 ms
31,264 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = fgets(STDIN);

$len = strlen($n);
$cnt = 0;
$yes = false;
for ($i=0; $i<$len; $i++) {
    if ($n[$i] == '1') {
        $cnt++;
    }
    if ($i > 0 && !$yes && !($n[$i-1] == '0' && $n[$i] == '1')) {
        $yes = true;
    }
}

if ($cnt == 2 || $cnt > 1 && $yes) {
    println('Yes');
} else {
    println('No');
}

function println($output)
{
    echo $output . PHP_EOL;
}
0