結果
問題 | No.1176 少ない質問 |
ユーザー | PCTprobability |
提出日時 | 2020-07-23 15:37:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 539 bytes |
コンパイル時間 | 766 ms |
コンパイル使用メモリ | 79,900 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 00:00:28 |
合計ジャッジ時間 | 1,385 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,948 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,948 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | WA | - |
コンパイルメッセージ
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/iostream:39, from main.cpp:1: In member function 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long int) [with _CharT = char; _Traits = std::char_traits<char>]', inlined from 'int main()' at main.cpp:43:9: /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/ostream:202:25: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized] 202 | { return _M_insert(__n); } | ~~~~~~~~~^~~~~ main.cpp: In function 'int main()': main.cpp:30:6: note: 'ans' was declared here 30 | ll ans; | ^~~
ソースコード
#include <iostream> #include <random> using namespace std; using ll = long long; ll gcds(ll a,ll b) { if (a%b == 0) { return(b); } else { return(gcds(b, a%b)); } } ll si(ll a,ll b){ ll r=gcds(a,b); return a/r; } ll bo(ll a,ll b){ ll r=gcds(a,b); return b/r; } int main(){ ll s; cin>>s; ll a,b; a=1; b=1; ll ans; for(int i=1;s>a;i++){ a=a*2; if(a>=s){ ans=2*i; } } for(ll i=1;s>b;i++){ b=b*3; if(b>=s){ ans=min(3*i,ans); } } cout<<ans<<endl; }