結果
| 問題 |
No.478 一般門松列列
|
| コンテスト | |
| ユーザー |
butter_roll
|
| 提出日時 | 2017-01-27 22:39:07 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 456 bytes |
| コンパイル時間 | 579 ms |
| コンパイル使用メモリ | 68,800 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-23 16:23:58 |
| 合計ジャッジ時間 | 5,292 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 30 |
ソースコード
#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-2;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;
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;
}
butter_roll