結果
問題 | No.539 インクリメント |
ユーザー | ciel |
提出日時 | 2024-04-18 11:59:54 |
言語 | Crystal (1.11.2) |
結果 |
RE
|
実行時間 | - |
コード長 | 284 bytes |
コンパイル時間 | 19,126 ms |
コンパイル使用メモリ | 331,000 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 05:12:41 |
合計ジャッジ時間 | 19,088 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 179 ms
6,820 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
gets.to_s.to_i.times{ s=gets.to_s.chomp endidx=s.rindex(/\d/) (puts s;next) 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 puts s[0,beginidx]+q+s[endidx..-1] }