結果

問題 No.643 Two Operations No.2
ユーザー kept1994kept1994
提出日時 2021-09-01 02:03:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 53,188 KB
最終ジャッジ日時 2024-11-26 14:44:52
合計ジャッジ時間 1,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 37 ms
53,008 KB
testcase_02 AC 38 ms
52,332 KB
testcase_03 AC 37 ms
52,320 KB
testcase_04 AC 37 ms
52,980 KB
testcase_05 AC 37 ms
52,556 KB
testcase_06 WA -
testcase_07 AC 38 ms
52,624 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,768 KB
testcase_10 AC 38 ms
52,516 KB
testcase_11 AC 37 ms
52,124 KB
testcase_12 AC 38 ms
53,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    X, Y = map(int, input().split())
    if X == Y:
        print(0)
        return
    if X == 0:
        print(2)
        return
    if Y == 0:
        print(1)
        return
    print(-1)
    return
   
        
if __name__ == '__main__':
    main()
0