結果

問題 No.552 十分簡単な星1の問題
ユーザー ayaaya
提出日時 2019-07-30 13:51:05
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 30,724 KB
実行使用メモリ 31,236 KB
最終ジャッジ日時 2024-07-04 14:30:02
合計ジャッジ時間 5,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
30,732 KB
testcase_01 AC 38 ms
30,796 KB
testcase_02 AC 37 ms
31,092 KB
testcase_03 AC 37 ms
31,236 KB
testcase_04 AC 35 ms
31,032 KB
testcase_05 AC 35 ms
30,948 KB
testcase_06 AC 36 ms
30,876 KB
testcase_07 AC 36 ms
30,908 KB
testcase_08 AC 38 ms
30,956 KB
testcase_09 AC 35 ms
30,796 KB
testcase_10 AC 37 ms
30,800 KB
testcase_11 AC 35 ms
30,992 KB
testcase_12 AC 38 ms
31,140 KB
testcase_13 AC 37 ms
30,792 KB
testcase_14 AC 36 ms
31,028 KB
testcase_15 AC 37 ms
30,736 KB
testcase_16 AC 37 ms
30,940 KB
testcase_17 AC 36 ms
31,120 KB
testcase_18 AC 35 ms
30,948 KB
testcase_19 AC 33 ms
31,056 KB
testcase_20 AC 33 ms
30,836 KB
testcase_21 AC 36 ms
30,764 KB
testcase_22 AC 35 ms
31,132 KB
testcase_23 AC 38 ms
30,844 KB
testcase_24 AC 36 ms
31,172 KB
testcase_25 AC 38 ms
31,192 KB
testcase_26 AC 35 ms
30,900 KB
testcase_27 AC 35 ms
31,064 KB
testcase_28 AC 35 ms
31,204 KB
testcase_29 AC 38 ms
31,084 KB
testcase_30 AC 35 ms
31,000 KB
testcase_31 AC 37 ms
30,764 KB
testcase_32 AC 38 ms
30,836 KB
testcase_33 AC 36 ms
31,000 KB
testcase_34 AC 37 ms
30,888 KB
testcase_35 AC 36 ms
31,176 KB
testcase_36 AC 36 ms
31,024 KB
testcase_37 AC 35 ms
30,804 KB
testcase_38 AC 37 ms
30,648 KB
testcase_39 AC 37 ms
31,040 KB
testcase_40 AC 39 ms
31,064 KB
testcase_41 AC 38 ms
30,924 KB
testcase_42 AC 38 ms
31,020 KB
testcase_43 AC 36 ms
30,724 KB
testcase_44 AC 35 ms
30,800 KB
testcase_45 AC 34 ms
31,140 KB
testcase_46 AC 35 ms
30,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

/*
No.552 十分簡単な星1の問題

問題文
整数Nが入力されます。それを10倍した数を出力してください。

入力
N
入力は−1020≤N≤1020を満たす。

桁越えするので無理やりやる
*/
$n = trim(fgets(STDIN));
echo $n == 0 ? 0 : $n . '0';
0