結果
問題 |
No.83 最大マッチング
|
ユーザー |
![]() |
提出日時 | 2017-11-23 12:26:30 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 473 bytes |
コンパイル時間 | 1,519 ms |
コンパイル使用メモリ | 158,420 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 05:23:26 |
合計ジャッジ時間 | 1,857 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 10 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int N; cin >> N; string S = ""; if(N % 2 == 0){ while(true){ if(N >= 1){ S += "1"; N -= 2; } if(N / 2 <= 0) break; } }else{ S += "7"; N -= 2; while(true){ if(N >= 1){ S += "1"; N -= 2; } if(N / 2 <= 0) break; } } cout << S << endl; return 0; }