結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
30,724 KB
testcase_01 AC 32 ms
30,824 KB
testcase_02 AC 34 ms
30,852 KB
testcase_03 AC 33 ms
30,836 KB
testcase_04 AC 34 ms
30,940 KB
testcase_05 AC 31 ms
30,868 KB
testcase_06 AC 32 ms
30,672 KB
testcase_07 AC 32 ms
30,828 KB
testcase_08 AC 31 ms
30,688 KB
testcase_09 AC 32 ms
30,912 KB
testcase_10 AC 31 ms
30,872 KB
testcase_11 AC 32 ms
30,976 KB
testcase_12 AC 31 ms
30,948 KB
testcase_13 AC 35 ms
30,716 KB
testcase_14 AC 31 ms
30,712 KB
testcase_15 AC 31 ms
30,912 KB
testcase_16 AC 31 ms
30,712 KB
testcase_17 AC 32 ms
30,544 KB
testcase_18 AC 31 ms
31,068 KB
testcase_19 AC 31 ms
30,856 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