結果
問題 | No.2493 K-th in L2 with L1 |
ユーザー | srjywrdnprkt |
提出日時 | 2024-11-12 14:59:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 869 bytes |
コンパイル時間 | 2,584 ms |
コンパイル使用メモリ | 213,488 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-12 14:59:49 |
合計ジャッジ時間 | 3,641 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 4 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 4 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/modint> using namespace std; //using namespace atcoder; using ll = long long; //using mint = modint998244353; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); int Q, x; cin >> Q; vector<vector<tuple<int, int, int>>> w(101); for (int i=-100; i<=100; i++){ for (int j=-100; j<=100; j++){ x = abs(i)+abs(j); if (x<=100){ w[x].push_back({i*i+j*j, i, j}); } } } for (int i=0; i<=100; i++) sort(w[i].begin(), w[i].end()); while(Q--){ int D, K; cin >> D >> K; if (w[D].size() >= K){ cout << "Yes" << endl; cout << get<1>(w[D][K-1]) << " " << get<2>(w[D][K-1]) << endl; } else{ cout << "No" << endl; } } return 0; }