結果

問題 No.5002 stick xor
ユーザー 👑 CleyLCleyL
提出日時 2021-11-02 13:44:08
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 278 bytes
コンパイル時間 924 ms
実行使用メモリ 3,532 KB
スコア 19
最終ジャッジ日時 2021-11-02 13:44:12
合計ジャッジ時間 2,744 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(){
    int n,k;cin>>n>>k;
    vector<int> A(k);
    for(int i = 0; k > i; i++){
        cin>>A[i];
    }
    for(int i = 0; k > i; i++){
        cout << 1 << " " << 1 << " " << A[i] << " " << 1 << endl;
    }
}
0