結果
問題 | No.1264 010 |
ユーザー |
![]() |
提出日時 | 2023-08-28 17:11:02 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 454 bytes |
コンパイル時間 | 830 ms |
コンパイル使用メモリ | 103,144 KB |
最終ジャッジ日時 | 2025-02-16 15:22:20 |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 9 |
ソースコード
#include<iostream>#include<map>#include<vector>#include <algorithm>#include<math.h>#include <iomanip>#include<set>#include <numeric>#include<string>using namespace std;int main(){int n;cin >> n;string s;if (n == 0) cout << 1 << endl;else if (n == 1) cout << "010" << endl;else {for (int i= 0; i < n; i++){s = '0' + s;}s += "101";cout << s << endl;}}