結果

問題 No.2063 ±2^k operations (easy)
ユーザー iwotiwot
提出日時 2022-09-08 13:49:34
言語 PHP
(8.3.4)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 32,404 KB
最終ジャッジ日時 2024-05-03 08:44:08
合計ジャッジ時間 2,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
32,400 KB
testcase_01 AC 36 ms
32,276 KB
testcase_02 AC 37 ms
32,404 KB
testcase_03 AC 37 ms
32,276 KB
testcase_04 AC 37 ms
32,272 KB
testcase_05 AC 37 ms
32,140 KB
testcase_06 AC 35 ms
32,400 KB
testcase_07 AC 37 ms
32,272 KB
testcase_08 AC 34 ms
32,276 KB
testcase_09 AC 37 ms
32,272 KB
testcase_10 AC 37 ms
32,404 KB
testcase_11 AC 35 ms
32,276 KB
testcase_12 AC 36 ms
32,272 KB
testcase_13 AC 35 ms
32,400 KB
testcase_14 AC 35 ms
32,276 KB
testcase_15 AC 35 ms
32,144 KB
testcase_16 AC 36 ms
32,400 KB
testcase_17 AC 49 ms
32,148 KB
testcase_18 AC 50 ms
32,144 KB
testcase_19 AC 44 ms
32,144 KB
testcase_20 AC 50 ms
32,276 KB
testcase_21 AC 48 ms
32,148 KB
testcase_22 AC 40 ms
32,400 KB
testcase_23 AC 41 ms
32,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = fgets(STDIN);

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

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

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