結果
問題 | No.2835 Take and Flip |
ユーザー | kenti |
提出日時 | 2024-08-09 21:25:45 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 93 ms / 2,000 ms |
コード長 | 292 bytes |
コンパイル時間 | 1,828 ms |
コンパイル使用メモリ | 79,868 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-08-09 21:26:00 |
合計ジャッジ時間 | 3,112 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
#include <iostream> using namespace std; typedef long long ll; const int MAX_N = 200000; int N; ll ans; ll A[MAX_N]; int main() { cin >> N; for (int i = 0; i < N; i++) cin >> A[i]; for (int i = 0; i < N; i++) ans += A[i]; cout << ans << endl; return 0; }