結果

問題 No.539 インクリメント
ユーザー cielciel
提出日時 2017-07-02 21:41:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,911 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,576 KB
最終ジャッジ日時 2024-10-05 08:46:58
合計ジャッジ時間 4,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
12,160 KB
testcase_01 AC 83 ms
23,296 KB
testcase_02 AC 1,911 ms
24,576 KB
testcase_03 AC 1,563 ms
24,448 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

puts gets.to_i.times.map{
	s=gets.chomp
	endidx=s.rindex(/\d/)
	next s if !endidx
	endidx+=1
	beginidx=(s[0,endidx].rindex(/[^\d]/)||-1)+1
	q=s[beginidx...endidx]
	if q[0]==?0
		q='%0*d'%[q.size,q.to_i+1]
	else
		q=(q.to_i+1).to_s
	end
	s[0,beginidx]+q+s[endidx..-1]
}
0