結果

問題 No.784 「,(カンマ)」
ユーザー Iruyan_ZakIruyan_Zak
提出日時 2020-09-30 17:48:47
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 3,546 ms
コンパイル使用メモリ 30,520 KB
実行使用メモリ 31,296 KB
最終ジャッジ日時 2024-07-06 05:27:56
合計ジャッジ時間 1,364 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,256 KB
testcase_01 AC 40 ms
30,948 KB
testcase_02 AC 41 ms
31,020 KB
testcase_03 AC 39 ms
31,040 KB
testcase_04 AC 40 ms
30,884 KB
testcase_05 AC 38 ms
31,272 KB
testcase_06 AC 40 ms
31,152 KB
testcase_07 AC 41 ms
31,248 KB
testcase_08 AC 40 ms
31,296 KB
testcase_09 AC 39 ms
31,284 KB
testcase_10 AC 40 ms
31,008 KB
testcase_11 AC 39 ms
31,188 KB
testcase_12 AC 39 ms
31,044 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$s = trim(fgets(STDIN));  // "123456"
$r_s = strrev($s); // "654321"
$r_commaed = chunk_split($r_s, 3, ","); // "654,321,"
$commaed = strrev($r_commaed); // ",123,456"
$ans = substr($commaed, 1); // "123,456"
echo $ans;
0