結果
問題 | No.2038 Strange Arrange |
ユーザー | milkcoffee |
提出日時 | 2022-03-03 19:39:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,433 bytes |
コンパイル時間 | 3,703 ms |
コンパイル使用メモリ | 230,072 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-24 18:14:04 |
合計ジャッジ時間 | 4,768 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <bits/stdc++.h> #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif using namespace std; /* #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") */ #define ll long long #define rep(i, n) for (ll i = 0; i < n; ++i) #define rep_up(i, a, n) for (ll i = a; i < n; ++i) #define rep_down(i, a, n) for (ll i = a; i >= n; --i) #define P pair<ll, ll> #define pb push_back #define bit_count(x) __builtin_popcountll(x) #define gcd(a,b) __gcd(a,b) #define lcm(a,b) a / gcd(a,b) * b #define endl "\n" #define all(v) v.begin(), v.end() #define fi first #define se second #define vvvvll vector< vector <vector <vector<ll> > > > #define vvvll vector< vector< vector<ll> > > #define vvll vector< vector<ll> > #define vll vector<ll> #define pqll priority_queue<ll> #define pqllg priority_queue<ll, vector<ll>, greater<ll>> template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); } template <class T> using V = vector<T>; //WAコード void solve(){ ll n, m, k, cnt = 0, sum = 0, ans = 0; cin>>n; rep(i,n+1){ cnt=1; ll x = i+1; while(x%2==0){ cnt++; x/=2; } cout<<cnt; } cout<<endl; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); //cout << fixed << setprecision(16); //ll T; //cin>>T; //rep(ca,T) solve(); }