結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
Zetubou_sense
|
| 提出日時 | 2018-03-17 00:21:31 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 234 bytes |
| コンパイル時間 | 875 ms |
| コンパイル使用メモリ | 54,748 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-21 15:30:11 |
| 合計ジャッジ時間 | 1,416 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main(){
int n;
cin >> n;
string result;
int i;
for(i=0;i<n/2;i++) result += '1';
if(n%2 == 1)result[0] = '7';
cout << result << endl;
return 0;
}
Zetubou_sense