結果

問題 No.552 十分簡単な星1の問題
ユーザー dyechidyechi
提出日時 2019-04-06 13:17:44
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 839 ms
コンパイル使用メモリ 30,924 KB
実行使用メモリ 31,520 KB
最終ジャッジ日時 2024-06-23 20:28:36
合計ジャッジ時間 3,834 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,364 KB
testcase_01 AC 38 ms
31,352 KB
testcase_02 AC 40 ms
31,368 KB
testcase_03 AC 38 ms
31,464 KB
testcase_04 AC 39 ms
31,416 KB
testcase_05 AC 39 ms
31,236 KB
testcase_06 AC 38 ms
31,396 KB
testcase_07 AC 40 ms
31,360 KB
testcase_08 AC 40 ms
31,312 KB
testcase_09 AC 40 ms
31,176 KB
testcase_10 AC 41 ms
31,520 KB
testcase_11 AC 40 ms
31,196 KB
testcase_12 AC 38 ms
31,196 KB
testcase_13 AC 38 ms
31,232 KB
testcase_14 AC 37 ms
30,900 KB
testcase_15 AC 38 ms
31,332 KB
testcase_16 AC 39 ms
31,208 KB
testcase_17 AC 40 ms
31,320 KB
testcase_18 AC 40 ms
31,152 KB
testcase_19 AC 39 ms
31,216 KB
testcase_20 AC 39 ms
31,116 KB
testcase_21 AC 40 ms
31,308 KB
testcase_22 AC 39 ms
31,068 KB
testcase_23 AC 38 ms
31,344 KB
testcase_24 AC 40 ms
31,080 KB
testcase_25 AC 39 ms
30,896 KB
testcase_26 AC 38 ms
31,120 KB
testcase_27 AC 38 ms
31,404 KB
testcase_28 AC 38 ms
31,364 KB
testcase_29 AC 37 ms
31,032 KB
testcase_30 AC 39 ms
31,260 KB
testcase_31 AC 41 ms
31,320 KB
testcase_32 AC 38 ms
31,028 KB
testcase_33 AC 39 ms
31,316 KB
testcase_34 AC 37 ms
31,340 KB
testcase_35 AC 37 ms
31,316 KB
testcase_36 AC 37 ms
31,340 KB
testcase_37 AC 38 ms
31,340 KB
testcase_38 AC 38 ms
31,292 KB
testcase_39 AC 39 ms
31,076 KB
testcase_40 AC 39 ms
31,284 KB
testcase_41 AC 39 ms
31,328 KB
testcase_42 AC 38 ms
31,420 KB
testcase_43 AC 38 ms
31,032 KB
testcase_44 AC 40 ms
31,388 KB
testcase_45 AC 38 ms
31,360 KB
testcase_46 AC 40 ms
31,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));

if ($s !== "0") {
    echo $s."0".PHP_EOL;
} else {
    echo "0".PHP_EOL;
}
?>
0