結果

問題 No.83 最大マッチング
ユーザー startcpp
提出日時 2015-10-04 21:46:33
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 53,848 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 19:35:39
合計ジャッジ時間 1,087 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 4 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

int main(){
int prosgm;
cin >> prosgm;

for( int i = 0; i < prosgm/2 - prosgm % 2; i++ )
cout << 1;
if( prosgm % 2 )
cout << 7;
cout << endl;
return 0;
}
0