結果
問題 | No.859 路線A、路線B、路線C |
ユーザー | tktk_snsn |
提出日時 | 2021-01-23 11:16:26 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 35 ms / 1,000 ms |
コード長 | 670 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 52,736 KB |
最終ジャッジ日時 | 2024-06-09 15:55:35 |
合計ジャッジ時間 | 1,233 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,352 KB |
testcase_01 | AC | 33 ms
52,608 KB |
testcase_02 | AC | 31 ms
52,608 KB |
testcase_03 | AC | 32 ms
52,608 KB |
testcase_04 | AC | 32 ms
52,352 KB |
testcase_05 | AC | 31 ms
52,736 KB |
testcase_06 | AC | 33 ms
52,480 KB |
testcase_07 | AC | 32 ms
52,096 KB |
testcase_08 | AC | 32 ms
52,480 KB |
testcase_09 | AC | 35 ms
52,480 KB |
testcase_10 | AC | 31 ms
52,736 KB |
testcase_11 | AC | 32 ms
52,736 KB |
testcase_12 | AC | 32 ms
52,608 KB |
testcase_13 | AC | 33 ms
52,224 KB |
testcase_14 | AC | 34 ms
51,968 KB |
ソースコード
inf = float("inf") G = [[inf] * 8 for _ in range(8)] # a0,ax,b0,by,c0,cz,s,t xyz = list(map(int, input().split())) for i in range(3): G[2*i][2*i+1] = G[2*i+1][2*i] = xyz[i] - 1 for j in range(3): if i != j: G[2*i][2*j] = 1 G[2*i+1][2*j+1] = 1 s, x = input().split() t, y = input().split() d = {"A": 0, "B": 1, "C": 2} x = int(x) - 1 y = int(y) - 1 if s == t: G[6][7] = abs(x - y) i = d[s] G[6][2*i] = x G[6][2*i+1] = xyz[i] - x - 1 i = d[t] G[2*i][7] = y G[2*i+1][7] = xyz[i] - y - 1 for k in range(8): for i in range(8): for j in range(8): G[i][j] = min(G[i][j], G[i][k] + G[k][j]) print(G[6][7])