結果
問題 | No.2078 魔抜けなパープル |
ユーザー | tnakao0123 |
提出日時 | 2022-09-29 01:03:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 704 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 41,928 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-02 01:47:25 |
合計ジャッジ時間 | 724 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 8 ms
6,944 KB |
testcase_02 | AC | 6 ms
6,940 KB |
testcase_03 | AC | 6 ms
6,940 KB |
testcase_04 | AC | 5 ms
6,944 KB |
testcase_05 | AC | 5 ms
6,944 KB |
testcase_06 | AC | 11 ms
6,944 KB |
testcase_07 | AC | 6 ms
6,940 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 2078.cc: No.2078 魔抜けなパープル - yukicoder */ #include<cstdio> #include<algorithm> using namespace std; /* constant */ const long long LINF = 1LL << 62; /* typedef */ typedef long long ll; /* global variables */ /* subroutines */ inline ll mp(int k, int x) { return (ll)k * k + x; } ll check(int a, int x, int c) { int k = a / c, r = a % c; return mp(k, x) * (c - r) + mp(k + 1, x) * r; } /* main */ int main() { int tn; scanf("%d", &tn); while (tn--) { int x, a; scanf("%d%d", &x, &a); ll minp = LINF; for (int c = 1; c <= a; c++) minp = min(minp, check(a, x, c)); printf("%lld\n", minp); } return 0; }