結果

問題 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
コンパイル時間 173 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-11-29 19:06:31
合計ジャッジ時間 13,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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