結果
問題 | No.2038 Strange Arrange |
ユーザー | merom686 |
提出日時 | 2022-08-12 22:36:59 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 247 bytes |
コンパイル時間 | 1,851 ms |
コンパイル使用メモリ | 192,224 KB |
最終ジャッジ日時 | 2025-01-30 21:28:44 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { int n; cin >> n; string s(n, '1'); for (int i = 0; i < n; i++) { s[i] += __builtin_ctz(i + 1); } cout << s << endl; return 0; }