結果

問題 No.353 ヘイトプラス
ユーザー JunOnumaJunOnuma
提出日時 2017-06-06 11:19:23
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 168 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-09-22 11:40:58
合計ジャッジ時間 1,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 RE -
testcase_05 AC 15 ms
9,984 KB
testcase_06 RE -
testcase_07 AC 18 ms
8,320 KB
testcase_08 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int, raw_input().split())
if b > a:
    t = a
    a = b
    b = t
for i in range(a,a*2):
    if i - a == b:
        print i
        break
else:
    print a*2
0