結果
問題 | No.3066 Collecting Coins Speedrun 1 |
ユーザー |
![]() |
提出日時 | 2025-03-21 21:24:02 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 43 ms / 2,000 ms |
コード長 | 291 bytes |
コンパイル時間 | 1,660 ms |
コンパイル使用メモリ | 195,468 KB |
実行使用メモリ | 5,888 KB |
最終ジャッジ日時 | 2025-03-21 21:24:06 |
合計ジャッジ時間 | 3,390 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 32 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main(){int N;cin >> N;vector<int> c(N);for (int i = 0; i < N; i++){cin >> c[i];}int mx = max(*max_element(c.begin(), c.end()), 0);int mn = min(*min_element(c.begin(), c.end()), 0);cout << (mx - mn) * 2 << endl;}