結果

問題 No.2314 Backflip
ユーザー osyo-mangaosyo-manga
提出日時 2023-06-16 12:03:13
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-24 06:10:53
合計ジャッジ時間 1,738 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 87 ms
12,288 KB
testcase_04 WA -
testcase_05 AC 93 ms
12,288 KB
testcase_06 AC 85 ms
12,416 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 88 ms
12,288 KB
testcase_10 AC 87 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# 入力された値を文字列で受け取る
str = gets.chomp

# [-1] で文字列の最後の文字を参照する事ができる
str[-1] = str[-1] == "0" ? "1" : ""
puts str
0