結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
xvfz57
|
| 提出日時 | 2019-10-26 23:53:18 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 233 bytes |
| 記録 | |
| コンパイル時間 | 323 ms |
| コンパイル使用メモリ | 82,400 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-27 10:50:19 |
| 合計ジャッジ時間 | 2,106 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 34 |
ソースコード
#include <iostream>
#include <algorithm>
#include <vector>
#include <numeric>
using namespace std;
int main(){
int l, n, i, w;
vector<int> w_v;
cin >> l >> n;
for (i = 0;i<n;i++){
cin >> w;
w_v.push_back(w);
}
}
xvfz57