結果
問題 | No.5002 stick xor |
ユーザー |
|
提出日時 | 2020-07-15 12:19:09 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 502 bytes |
コンパイル時間 | 930 ms |
実行使用メモリ | 1,588 KB |
スコア | -23 |
最終ジャッジ日時 | 2020-07-15 12:19:12 |
ジャッジサーバーID (参考情報) |
judge10 / judge6 |
純コード判定しない問題か言語 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 32 |
ソースコード
#include <iostream>#include <vector>#include <algorithm>#include <map>#include <queue>#include <cstdio>#include <ctime>#include <assert.h>#include <chrono>#include <random>#include <numeric>#include <set>using namespace std;typedef long long int ll;using ull = unsigned long long;int main(){cin.tie(nullptr);ios::sync_with_stdio(false);int n,k; cin >> n >> k;while(k--){int l; cin >> l;cout << 1 << " " << 1 << " " << 1 << " " << l << endl;}}