結果
問題 | No.539 インクリメント |
ユーザー | ciel |
提出日時 | 2024-04-18 11:51:17 |
言語 | Crystal (1.11.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 286 bytes |
コンパイル時間 | 19,513 ms |
コンパイル使用メモリ | 331,328 KB |
実行使用メモリ | 7,128 KB |
最終ジャッジ日時 | 2024-10-10 05:03:46 |
合計ジャッジ時間 | 18,715 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
puts gets.to_s.to_i.times.map{ s=gets.to_s.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] }.to_a