結果
問題 | No.2078 魔抜けなパープル |
ユーザー | みここ |
提出日時 | 2022-12-12 21:38:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 422 bytes |
コンパイル時間 | 590 ms |
コンパイル使用メモリ | 69,860 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-24 11:44:45 |
合計ジャッジ時間 | 1,184 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 16 ms
5,376 KB |
testcase_02 | AC | 11 ms
5,376 KB |
testcase_03 | AC | 14 ms
5,376 KB |
testcase_04 | AC | 11 ms
5,376 KB |
testcase_05 | AC | 11 ms
5,376 KB |
testcase_06 | AC | 24 ms
5,376 KB |
testcase_07 | AC | 12 ms
5,376 KB |
ソースコード
#include <iostream> using namespace std; typedef long long ll; const ll INF = 1000000000000000000; int main() { int t; cin >> t; while (t--) { ll x, a; cin >> x >> a; ll ans = INF; for (int i = 1; i <= a; i++) { ans = min(ans, a % i * (a / i + 1) * (a / i + 1) + (i - a % i) * (a / i) * (a / i) + x * i); } cout << ans << endl; } }