結果
問題 | No.690 E869120 and Constructing Array 4 |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2018-05-18 23:56:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 516 bytes |
コンパイル時間 | 743 ms |
コンパイル使用メモリ | 78,796 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 14:09:41 |
合計ジャッジ時間 | 4,088 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include<algorithm> #include<iostream> #include<vector> using namespace std; typedef long long lint; typedef vector<int>vi; typedef pair<int,int>pii; #define rep(i,n)for(int i=0;i<(int)(n);++i) int main(){ lint k; cin>>k; int n=32; vector<pii>e; rep(i,n){ rep(j,i){ if(j>0) e.push_back(pii(j,i)); } } for(int i=30;i>=0;--i){ if(k&1LL<<i) e.push_back(pii(0,n-i-1)); } cout<<n<<" "<<e.size()<<endl; rep(i,e.size()){ cout<<e[i].first+1<<" "<<e[i].second+1<<endl; } }