結果

問題 No.1591 Two Digits
ユーザー kwkkwk
提出日時 2022-12-21 12:25:41
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 107 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 30,964 KB
実行使用メモリ 31,348 KB
最終ジャッジ日時 2024-04-29 03:14:32
合計ジャッジ時間 1,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
31,064 KB
testcase_01 AC 43 ms
31,240 KB
testcase_02 AC 43 ms
31,320 KB
testcase_03 AC 41 ms
31,000 KB
testcase_04 AC 40 ms
31,288 KB
testcase_05 AC 40 ms
31,012 KB
testcase_06 AC 41 ms
30,992 KB
testcase_07 AC 40 ms
31,220 KB
testcase_08 AC 40 ms
31,256 KB
testcase_09 AC 40 ms
31,164 KB
testcase_10 AC 40 ms
31,144 KB
testcase_11 AC 41 ms
31,148 KB
testcase_12 AC 40 ms
31,308 KB
testcase_13 AC 40 ms
31,076 KB
testcase_14 AC 40 ms
31,220 KB
testcase_15 AC 40 ms
31,348 KB
testcase_16 AC 40 ms
30,948 KB
testcase_17 AC 41 ms
31,116 KB
testcase_18 AC 42 ms
31,052 KB
testcase_19 AC 40 ms
31,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$m = strlen($n);

if ($m == 2) {
    echo "Yes";
}else {
    echo "No";
}
?>
0