結果

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

ソースコード

diff #

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

using namespace std;

int main(void){
  int n,k;
  int i,j;
  cin>>n>>k;
  for(i=0;i<n-k;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<<" ";
  }
  j=i-1;
  for(;i<n;i++){
    if(j%4==0) cout<<1;
    if(j%4==1) cout<<3;
    if(j%4==2) cout<<2;
    if(j%4==3) cout<<4;
    cout<<" ";
  }
  cout<<endl;
  return 0;
}
0