結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-06-11 21:25:38 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 215 bytes |
| コンパイル時間 | 496 ms |
| コンパイル使用メモリ | 65,172 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-30 13:45:30 |
| 合計ジャッジ時間 | 1,077 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 WA * 6 |
ソースコード
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
int N;
cin>>N;
if (N==3){
cout<<7<<endl;
return 0;
}
int n=N/2;
for (int i=1;i<=n;i++){
cout<<"1";
}
cout<<endl;
return 0;
}