結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー SKSK
提出日時 2022-12-20 14:14:00
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 30,612 KB
実行使用メモリ 31,288 KB
最終ジャッジ日時 2024-11-18 01:49:42
合計ジャッジ時間 1,916 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 31 ms
30,868 KB
testcase_02 WA -
testcase_03 AC 34 ms
31,056 KB
testcase_04 AC 32 ms
30,948 KB
testcase_05 WA -
testcase_06 AC 31 ms
30,928 KB
testcase_07 WA -
testcase_08 AC 31 ms
30,980 KB
testcase_09 AC 31 ms
30,996 KB
testcase_10 AC 31 ms
30,848 KB
testcase_11 WA -
testcase_12 AC 31 ms
31,020 KB
testcase_13 AC 34 ms
30,900 KB
testcase_14 AC 31 ms
30,832 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 31 ms
30,824 KB
testcase_18 WA -
testcase_19 AC 30 ms
30,920 KB
testcase_20 AC 31 ms
30,736 KB
testcase_21 WA -
testcase_22 AC 31 ms
30,760 KB
testcase_23 AC 30 ms
30,780 KB
testcase_24 AC 31 ms
30,900 KB
testcase_25 AC 31 ms
30,896 KB
testcase_26 AC 31 ms
31,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$m = strlen($n);
$a = 0;
$b = 0;
for ($i = 0; $i < $m; $i++) {
     if ($n[$i] == 4) {
         $a++;
     }elseif ($n[$i] == 6) {
         $b++;
     }
}

if ($a > 1 && $b > 1) {
    echo "Beautiful";
}else {
    echo "...";
}
?>
0