結果

問題 No.2314 Backflip
ユーザー やでな@競プロやでな@競プロ
提出日時 2023-10-10 02:01:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2024-09-13 00:11:33
合計ジャッジ時間 1,239 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,568 KB
testcase_01 AC 38 ms
52,708 KB
testcase_02 AC 38 ms
53,600 KB
testcase_03 AC 38 ms
52,260 KB
testcase_04 AC 38 ms
52,812 KB
testcase_05 AC 37 ms
53,336 KB
testcase_06 AC 38 ms
53,024 KB
testcase_07 AC 37 ms
53,684 KB
testcase_08 AC 37 ms
51,776 KB
testcase_09 AC 38 ms
53,008 KB
testcase_10 AC 38 ms
52,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(input())

if s[-1] == "0":
    ans = s[:len(s)-1]+["1"]
    print("".join(ans))
else:
    ans = s[:len(s)-1]+["0"]
    print("".join(ans))
0