結果
問題 | No.756 チャンパーノウン定数 (1) |
ユーザー | mondo |
提出日時 | 2019-08-06 15:26:55 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 159 bytes |
コンパイル時間 | 132 ms |
コンパイル使用メモリ | 32,532 KB |
実行使用メモリ | 32,784 KB |
最終ジャッジ日時 | 2024-07-18 13:57:56 |
合計ジャッジ時間 | 1,748 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
31,472 KB |
testcase_01 | AC | 38 ms
31,628 KB |
testcase_02 | AC | 38 ms
31,616 KB |
testcase_03 | AC | 35 ms
31,336 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 37 ms
31,428 KB |
testcase_09 | AC | 38 ms
31,480 KB |
testcase_10 | WA | - |
testcase_11 | AC | 39 ms
31,516 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 39 ms
31,420 KB |
testcase_22 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $number = trim(fgets(STDIN)); $array = range(0, 101); if ($number <= 10) { echo $array[$number]; } else { echo substr($array[$number], -1) - 1; }