結果

問題 No.478 一般門松列列
ユーザー butter_roll
提出日時 2017-01-27 22:33:46
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 296 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 68,144 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-23 16:20:47
合計ジャッジ時間 5,060 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <algorithm>
#include <iostream>
#include <vector>

using namespace std;

int main(void){
  int n,k;
  int i;
  cin>>n>>k;
  for(i=0;i<n;i++){
    if(i%4==0) cout<<1;
    if(i%4==1) cout<<3;
    if(i%4==2) cout<<2;
    if(i%4==3) cout<<4;
  }
  cout<<endl;
  return 0;
}
0