結果

問題 No.1591 Two Digits
ユーザー kazuyakazuya
提出日時 2021-07-12 20:45:19
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 74 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 18,676 KB
実行使用メモリ 18,864 KB
最終ジャッジ日時 2023-09-14 20:45:21
合計ジャッジ時間 1,345 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
18,664 KB
testcase_01 AC 16 ms
18,768 KB
testcase_02 AC 16 ms
18,808 KB
testcase_03 AC 16 ms
18,728 KB
testcase_04 AC 15 ms
18,812 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 16 ms
18,764 KB
testcase_12 AC 16 ms
18,708 KB
testcase_13 AC 15 ms
18,864 KB
testcase_14 AC 16 ms
18,732 KB
testcase_15 AC 16 ms
18,812 KB
testcase_16 AC 15 ms
18,828 KB
testcase_17 WA -
testcase_18 AC 16 ms
18,788 KB
testcase_19 AC 16 ms
18,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

if(N >= 10){
    echo 'Yes';
}else if(N < 10){
    echo 'No';
}

?>
0