結果
問題 | No.83 最大マッチング |
ユーザー |
|
提出日時 | 2023-06-07 14:21:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 529 bytes |
コンパイル時間 | 1,812 ms |
コンパイル使用メモリ | 167,116 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-29 19:26:34 |
合計ジャッジ時間 | 2,552 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
#include <bits/stdc++.h>using namespace std;using ll = long long;using Graph = vector<vector<int>>;long long GCD(long long a,long long b) {if(a%b == 0) return b;return GCD(b,a%b);}int main() {int N; cin >> N;if(N % 2 == 0) {string ans = "";for(int i = 0; i < N / 2; i++) {ans += '1';}cout << ans << endl;}else {string ans = "";for(int i = 0; i< (N - 3) / 2; i++) {ans += '1';}ans += '7';reverse(ans.begin(),ans.end());cout << ans << endl;}}