結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
Series_205
|
| 提出日時 | 2019-10-22 18:15:08 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 5,000 ms |
| コード長 | 204 bytes |
| 記録 | |
| コンパイル時間 | 369 ms |
| コンパイル使用メモリ | 78,188 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-08 01:59:13 |
| 合計ジャッジ時間 | 1,316 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include <iostream>
using namespace std;
int n;
int main(){
cin>>n;
if(n%2){
cout<<7;
n-=3;
}
while(n){
cout<<1;
n-=2;
}
cout<<endl;
return 0;
}
Series_205