結果
問題 | No.83 最大マッチング |
ユーザー |
![]() |
提出日時 | 2018-03-31 23:48:34 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 334 bytes |
コンパイル時間 | 467 ms |
コンパイル使用メモリ | 63,900 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 03:45:58 |
合計ジャッジ時間 | 1,117 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 4 WA * 6 |
ソースコード
#include <iostream>#include <string>#include <vector>#include <algorithm>#include <map>using namespace std;int main() {int n;cin >> n;if(n%2 == 0){for(int i = 0;i < n/2;i++)cout << 1;}else{for(int i = 1;i < n/2;i++)cout << 1;cout << 7;}cout << endl;return 0;}