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