結果
問題 |
No.3018 目隠し宝探し
|
ユーザー |
![]() |
提出日時 | 2025-06-12 21:30:45 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 610 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 83,976 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2025-06-12 21:31:20 |
合計ジャッジ時間 | 3,832 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 1 |
other | RE * 21 |
ソースコード
n = int(input()) m = int(input()) links = [[] for _ in range(n)] for _ in range(m): a, b, c = map(int, input().split()) links[a].append((b, c)) sum_c_per_a = [0] * n for a in range(n): sum_c_per_a[a] = sum(c for (b, c) in links[a]) people = [10.0 for _ in range(n)] for _ in range(100): next_people = [0.0] * n for a in range(n): current = people[a] if current == 0.0: continue s = sum_c_per_a[a] for (b, c) in links[a]: next_people[b] += current * (c / s) people = next_people for u in people: print("{0:.6f}".format(u))