結果
問題 |
No.83 最大マッチング
|
ユーザー |
![]() |
提出日時 | 2018-03-02 12:07:19 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 295 bytes |
コンパイル時間 | 664 ms |
コンパイル使用メモリ | 56,252 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-31 20:28:19 |
合計ジャッジ時間 | 1,955 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 RE * 1 |
other | AC * 7 RE * 3 |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { int N; string ans; cin >> N; for(int i=0; i<N/2; i++) ans += '1'; //桁を全部1で埋める if(N % 2 != 0) { ans.insert(ans.begin(), '7'); ans.erase(ans.begin()+N); } cout << ans << endl; return 0; }