結果

問題 No.729 文字swap
ユーザー mondomondo
提出日時 2019-08-06 11:47:01
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 324 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 31,084 KB
実行使用メモリ 31,592 KB
最終ジャッジ日時 2024-07-18 13:52:39
合計ジャッジ時間 1,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
30,976 KB
testcase_01 AC 33 ms
31,392 KB
testcase_02 AC 32 ms
31,424 KB
testcase_03 AC 34 ms
30,972 KB
testcase_04 AC 37 ms
31,300 KB
testcase_05 AC 38 ms
31,296 KB
testcase_06 WA -
testcase_07 AC 33 ms
31,140 KB
testcase_08 AC 33 ms
31,328 KB
testcase_09 AC 33 ms
31,288 KB
testcase_10 WA -
testcase_11 AC 32 ms
31,332 KB
testcase_12 WA -
testcase_13 AC 33 ms
31,504 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$moji = trim(fgets(STDIN));
list($first, $second) = explode(" ", trim(fgets(STDIN)));
$firstmoji = substr($moji, $first,1);
$secondmoji = substr($moji, $second,1);
$newmoji = str_replace($firstmoji, "?", $moji);
$newmoji2 = str_replace($secondmoji, $firstmoji, $newmoji);
echo str_replace("?", $secondmoji, $newmoji2);
0