結果

問題 No.552 十分簡単な星1の問題
ユーザー ねずねず
提出日時 2018-01-28 12:49:54
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 62 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 31,200 KB
実行使用メモリ 31,420 KB
最終ジャッジ日時 2024-06-09 08:21:28
合計ジャッジ時間 2,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,196 KB
testcase_01 AC 37 ms
31,004 KB
testcase_02 AC 37 ms
31,416 KB
testcase_03 AC 35 ms
31,088 KB
testcase_04 AC 35 ms
31,212 KB
testcase_05 AC 34 ms
30,988 KB
testcase_06 AC 34 ms
31,052 KB
testcase_07 AC 34 ms
31,204 KB
testcase_08 AC 34 ms
31,052 KB
testcase_09 AC 34 ms
31,056 KB
testcase_10 AC 34 ms
30,888 KB
testcase_11 AC 34 ms
31,296 KB
testcase_12 AC 34 ms
31,028 KB
testcase_13 AC 36 ms
31,064 KB
testcase_14 AC 35 ms
31,088 KB
testcase_15 AC 35 ms
31,328 KB
testcase_16 AC 34 ms
31,108 KB
testcase_17 AC 34 ms
31,420 KB
testcase_18 AC 34 ms
31,328 KB
testcase_19 AC 35 ms
31,252 KB
testcase_20 AC 34 ms
31,372 KB
testcase_21 AC 35 ms
31,088 KB
testcase_22 AC 34 ms
31,156 KB
testcase_23 AC 34 ms
31,140 KB
testcase_24 AC 34 ms
31,256 KB
testcase_25 AC 35 ms
31,096 KB
testcase_26 AC 34 ms
31,120 KB
testcase_27 AC 34 ms
30,880 KB
testcase_28 AC 33 ms
31,224 KB
testcase_29 AC 34 ms
31,100 KB
testcase_30 AC 35 ms
31,080 KB
testcase_31 AC 33 ms
30,836 KB
testcase_32 AC 34 ms
31,252 KB
testcase_33 AC 35 ms
30,888 KB
testcase_34 AC 36 ms
31,336 KB
testcase_35 AC 34 ms
31,224 KB
testcase_36 AC 34 ms
31,116 KB
testcase_37 AC 34 ms
31,028 KB
testcase_38 AC 34 ms
31,156 KB
testcase_39 AC 35 ms
30,884 KB
testcase_40 AC 34 ms
31,204 KB
testcase_41 AC 33 ms
31,032 KB
testcase_42 AC 33 ms
31,120 KB
testcase_43 AC 34 ms
30,888 KB
testcase_44 AC 34 ms
31,328 KB
testcase_45 AC 33 ms
31,044 KB
testcase_46 AC 34 ms
31,036 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
echo $n == 0 ? 0 : $n . '0';
?>
0