結果

問題 No.784 「,(カンマ)」
ユーザー cielciel
提出日時 2018-12-02 19:19:13
言語 Ruby
(3.1.1p18 )
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 80 bytes
コンパイル時間 33 ms
使用メモリ 13,936 KB
最終ジャッジ日時 2023-02-01 07:11:11
合計ジャッジ時間 2,304 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 72 ms
13,728 KB
testcase_01 AC 72 ms
13,792 KB
testcase_02 AC 71 ms
13,924 KB
testcase_03 AC 72 ms
13,928 KB
testcase_04 AC 72 ms
13,792 KB
testcase_05 AC 71 ms
13,720 KB
testcase_06 AC 71 ms
13,936 KB
testcase_07 AC 71 ms
13,688 KB
testcase_08 AC 71 ms
13,840 KB
testcase_09 AC 72 ms
13,848 KB
testcase_10 AC 72 ms
13,808 KB
testcase_11 AC 72 ms
13,684 KB
testcase_12 AC 71 ms
13,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

puts gets.chomp.reverse.chars.each_slice(3).map{|e|e*''+','}.join[0..-2].reverse
0