結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
31,060 KB
testcase_01 AC 36 ms
31,188 KB
testcase_02 AC 34 ms
31,148 KB
testcase_03 AC 33 ms
31,192 KB
testcase_04 AC 36 ms
31,152 KB
testcase_05 AC 36 ms
30,984 KB
testcase_06 AC 37 ms
30,964 KB
testcase_07 AC 35 ms
30,948 KB
testcase_08 AC 34 ms
30,884 KB
testcase_09 AC 36 ms
30,896 KB
testcase_10 AC 37 ms
31,056 KB
testcase_11 AC 36 ms
30,788 KB
testcase_12 AC 33 ms
31,064 KB
testcase_13 AC 37 ms
30,844 KB
testcase_14 AC 34 ms
30,884 KB
testcase_15 AC 34 ms
30,908 KB
testcase_16 AC 37 ms
30,988 KB
testcase_17 AC 36 ms
30,988 KB
testcase_18 AC 38 ms
30,976 KB
testcase_19 AC 36 ms
31,056 KB
testcase_20 AC 35 ms
31,204 KB
testcase_21 AC 36 ms
31,088 KB
testcase_22 AC 35 ms
31,352 KB
testcase_23 AC 33 ms
30,932 KB
testcase_24 AC 34 ms
31,028 KB
testcase_25 AC 34 ms
30,868 KB
testcase_26 AC 36 ms
30,856 KB
testcase_27 AC 38 ms
30,892 KB
testcase_28 AC 38 ms
30,976 KB
testcase_29 AC 37 ms
31,124 KB
testcase_30 AC 36 ms
30,644 KB
testcase_31 AC 36 ms
30,912 KB
testcase_32 AC 37 ms
30,832 KB
testcase_33 AC 37 ms
30,696 KB
testcase_34 AC 38 ms
31,000 KB
testcase_35 AC 38 ms
30,756 KB
testcase_36 AC 39 ms
30,812 KB
testcase_37 AC 37 ms
31,072 KB
testcase_38 AC 37 ms
30,740 KB
testcase_39 AC 38 ms
31,188 KB
testcase_40 AC 38 ms
31,012 KB
testcase_41 AC 38 ms
31,064 KB
testcase_42 AC 39 ms
31,052 KB
testcase_43 AC 38 ms
30,788 KB
testcase_44 AC 38 ms
30,884 KB
testcase_45 AC 38 ms
31,200 KB
testcase_46 AC 37 ms
30,848 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