結果

問題 No.581 XOR
ユーザー setcanonsetcanon
提出日時 2017-12-08 11:59:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 150 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 17,568 KB
最終ジャッジ日時 2024-05-07 05:22:58
合計ジャッジ時間 4,242 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,568 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 OLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,c = map(int,input().split())
if a < c:
    for i in range(c-a-1):
        print(a + i + 1)
else:
    for i in range(a-c-1):
        print(c + i + 1)
0