結果
| 問題 |
No.8103 Range Chmax and Maximize Abs Sum
|
| コンテスト | |
| ユーザー |
aguroshou
|
| 提出日時 | 2023-03-31 23:18:28 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 291 bytes |
| コンパイル時間 | 1,599 ms |
| コンパイル使用メモリ | 166,200 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-23 02:23:05 |
| 合計ジャッジ時間 | 3,519 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 24 |
ソースコード
#include <bits/stdc++.h>
#include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
using namespace std;
typedef long long ll;
int main() {
ll n, a[200005] = {};
cin >> n;
for (ll i = 0; i < n; i++)
{
cin >> a[i];
}
cout << n * 1000000000 << endl;
return 0;
}
aguroshou