結果
問題 | No.3066 Collecting Coins Speedrun 1 |
ユーザー |
|
提出日時 | 2025-03-21 21:55:04 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 45 ms / 2,000 ms |
コード長 | 386 bytes |
コンパイル時間 | 3,551 ms |
コンパイル使用メモリ | 272,088 KB |
実行使用メモリ | 5,888 KB |
最終ジャッジ日時 | 2025-03-21 21:55:10 |
合計ジャッジ時間 | 5,376 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 32 |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); ++i) using namespace std; using ll = long long; int main() { int n; cin >> n; ll pos = 0, neg = 0; rep(i, n) { ll c; cin >> c; if (c > 0) pos = max(pos, c); else neg = min(neg, c); } ll ans = (pos-neg)*2; cout << ans << '\n'; return 0; }