結果

問題 No.292 芸名
ユーザー leos_caraxleos_carax
提出日時 2016-10-24 19:37:19
言語 PHP
(8.3.4)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 990 ms
コンパイル使用メモリ 31,056 KB
実行使用メモリ 31,564 KB
最終ジャッジ日時 2024-11-24 02:47:40
合計ジャッジ時間 2,179 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,564 KB
testcase_01 AC 35 ms
31,180 KB
testcase_02 AC 38 ms
31,176 KB
testcase_03 AC 36 ms
31,272 KB
testcase_04 AC 40 ms
31,560 KB
testcase_05 AC 37 ms
31,020 KB
testcase_06 AC 37 ms
31,144 KB
testcase_07 AC 37 ms
31,340 KB
testcase_08 AC 36 ms
31,252 KB
testcase_09 AC 37 ms
31,496 KB
testcase_10 AC 37 ms
31,372 KB
testcase_11 AC 39 ms
31,524 KB
testcase_12 AC 37 ms
30,908 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($name, $t, $u) = explode(' ',trim(fgets(STDIN)));
$name = str_split($name);
unset($name[$t]);
unset($name[$u]);
echo implode('', $name).PHP_EOL;
0