結果

問題 No.2314 Backflip
ユーザー minimumminimum
提出日時 2023-05-26 21:51:41
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 51 bytes
コンパイル時間 977 ms
コンパイル使用メモリ 86,772 KB
実行使用メモリ 71,400 KB
最終ジャッジ日時 2023-08-26 11:14:27
合計ジャッジ時間 1,880 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,188 KB
testcase_01 AC 65 ms
71,236 KB
testcase_02 AC 65 ms
71,396 KB
testcase_03 AC 65 ms
71,376 KB
testcase_04 AC 64 ms
71,320 KB
testcase_05 AC 61 ms
71,240 KB
testcase_06 AC 64 ms
71,380 KB
testcase_07 AC 64 ms
71,360 KB
testcase_08 AC 62 ms
71,244 KB
testcase_09 AC 66 ms
71,400 KB
testcase_10 AC 64 ms
71,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
s = s[:-1] + str(int(s[-1])^1)
print(s)
0