結果
| 問題 | No.3536 LCM+ELEMENT=SUM |
| コンテスト | |
| ユーザー |
tau1235
|
| 提出日時 | 2026-05-09 02:55:10 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 213 bytes |
| 記録 | |
| コンパイル時間 | 2,190 ms |
| コンパイル使用メモリ | 332,804 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-05-09 02:55:18 |
| 合計ジャッジ時間 | 3,040 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
vector<int> a={1,3,5,7};
for (int i=0;i<30;i++) a.push_back(3);
int n=a.size();
cout<<n<<endl;
for (int i=0;i<n;i++) cout<<a[i]<<" \n"[i==n-1];
}
tau1235