結果

問題 No.83 最大マッチング
ユーザー mitsu__new
提出日時 2018-03-02 12:20:18
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 58,024 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-31 21:56:24
合計ジャッジ時間 1,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;

int main() {
	int N;
	string ans;
	
	cin >> N;
	for(int i=0; i<N/2; i++) ans += '1';  //桁を全部1で埋める
	
	if(N % 2 != 0) {
		ans.erase(ans.begin());
		ans = '7' + ans;
	}

	cout << ans << endl;

	return 0;
}
0