結果

問題 No.552 十分簡単な星1の問題
ユーザー ayaaya
提出日時 2019-07-30 13:51:01
言語 PHP
(8.3.4)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 18,724 KB
実行使用メモリ 17,092 KB
最終ジャッジ日時 2023-09-17 20:17:59
合計ジャッジ時間 2,479 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
16,896 KB
testcase_01 AC 15 ms
16,972 KB
testcase_02 AC 15 ms
16,964 KB
testcase_03 AC 15 ms
17,004 KB
testcase_04 AC 15 ms
17,044 KB
testcase_05 AC 14 ms
16,992 KB
testcase_06 AC 14 ms
16,896 KB
testcase_07 AC 15 ms
16,972 KB
testcase_08 AC 15 ms
16,972 KB
testcase_09 AC 15 ms
16,816 KB
testcase_10 AC 15 ms
16,996 KB
testcase_11 AC 14 ms
17,084 KB
testcase_12 AC 15 ms
17,016 KB
testcase_13 AC 16 ms
16,996 KB
testcase_14 AC 15 ms
16,792 KB
testcase_15 AC 15 ms
17,028 KB
testcase_16 AC 15 ms
17,092 KB
testcase_17 AC 15 ms
16,996 KB
testcase_18 AC 15 ms
17,020 KB
testcase_19 AC 14 ms
16,896 KB
testcase_20 AC 15 ms
16,916 KB
testcase_21 AC 15 ms
16,992 KB
testcase_22 AC 15 ms
16,820 KB
testcase_23 AC 14 ms
17,040 KB
testcase_24 AC 15 ms
16,940 KB
testcase_25 AC 15 ms
17,016 KB
testcase_26 AC 15 ms
17,008 KB
testcase_27 AC 15 ms
16,960 KB
testcase_28 AC 15 ms
16,972 KB
testcase_29 AC 15 ms
16,924 KB
testcase_30 AC 15 ms
16,924 KB
testcase_31 AC 15 ms
16,956 KB
testcase_32 AC 15 ms
16,992 KB
testcase_33 AC 15 ms
16,996 KB
testcase_34 AC 15 ms
17,068 KB
testcase_35 AC 15 ms
16,988 KB
testcase_36 AC 15 ms
17,016 KB
testcase_37 AC 15 ms
17,008 KB
testcase_38 AC 15 ms
16,952 KB
testcase_39 AC 16 ms
16,944 KB
testcase_40 AC 15 ms
16,992 KB
testcase_41 AC 15 ms
16,972 KB
testcase_42 AC 15 ms
16,964 KB
testcase_43 AC 15 ms
17,064 KB
testcase_44 AC 15 ms
16,968 KB
testcase_45 AC 15 ms
16,896 KB
testcase_46 AC 15 ms
16,956 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