結果
問題 |
No.904 サメトロ
|
ユーザー |
![]() |
提出日時 | 2019-10-11 22:21:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 378 bytes |
コンパイル時間 | 1,400 ms |
コンパイル使用メモリ | 166,072 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-25 08:01:52 |
合計ジャッジ時間 | 2,319 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 WA * 14 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int maxInDeg = 0; int inSum = 0; // -> int outSum = 0; // <- for (int i = 0; i < n-1; ++i){ int in, out; cin >> in >> out; inSum += in; outSum += out; } int ans = max(inSum, outSum) - abs(inSum - outSum) + 1; cout << ans << endl; }