結果
問題 | No.3066 Collecting Coins Speedrun 1 |
ユーザー |
![]() |
提出日時 | 2025-03-21 21:25:03 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 67 ms / 2,000 ms |
コード長 | 216 bytes |
コンパイル時間 | 2,023 ms |
コンパイル使用メモリ | 198,840 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2025-03-21 21:25:07 |
合計ジャッジ時間 | 3,626 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 32 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ set<int> s; int n; cin>>n; while(cin>>n) s.insert(n); s.insert(0); cout<<(*s.rbegin()-*s.begin())*2<<endl; }