結果

問題 No.149 碁石の移動
ユーザー WatsonWatson
提出日時 2017-07-27 16:00:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-06 12:05:22
合計ジャッジ時間 1,685 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
10,752 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 67 ms
10,752 KB
testcase_06 AC 70 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 33 ms
10,624 KB
testcase_10 AC 57 ms
10,752 KB
testcase_11 AC 62 ms
10,752 KB
testcase_12 AC 45 ms
10,624 KB
testcase_13 AC 42 ms
10,624 KB
testcase_14 AC 45 ms
10,752 KB
testcase_15 AC 123 ms
10,752 KB
testcase_16 AC 193 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = [int(i) for i in input().split()]
B = [int(i) for i in input().split()]
C,D = [int(i) for i in input().split()]
while C > 0:
    if A[1] >= 1:
        A[1] -= 1
        B[1] += 1
    else:
        A[0] -= 1
        B[0] += 1
    C -= 1
while D > 0:
    if B[0] >= 1:
        A[0] += 1
        B[0] -= 1
    else:
        A[1] += 1
        B[1] -= 1
    D -= 1
print(A[0])
0