結果

問題 No.859 路線A、路線B、路線C
ユーザー kohei2019kohei2019
提出日時 2022-05-04 13:14:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 500 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-07-03 15:39:45
合計ジャッジ時間 1,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 34 ms
51,712 KB
testcase_11 AC 36 ms
51,712 KB
testcase_12 AC 35 ms
51,968 KB
testcase_13 AC 35 ms
52,352 KB
testcase_14 AC 36 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ls = list(map(int,input().split()))
S0,t0 = input().split()
S1,t1 = input().split()
l = 'ABC'
s = [l.index(S0),int(t0)-1]
g = [l.index(S1),int(t1)-1]
if s[0] == g[0]:
    a = ls.pop(s[0])
    ans = min(abs(s[1]-g[1]),a-abs(s[1]-g[1])+ls[0],a-abs(s[1]-g[1])+ls[1])
else:
    ans = min(s[1]+g[1]+1,ls[s[0]]-s[1]-1+ls[g[0]]-g[1]-1+1)
    aa = set([0,1,2])
    aa.remove(s[0])
    aa.remove(g[0])
    n = list(aa)[0]
    ans = min(ans,s[1]+ls[g[0]]-g[1]-1+ls[n]+1,g[1]+ls[s[0]]-s[1]-1+ls[n]+1)
print(ans)
0