結果

問題 No.2078 魔抜けなパープル
ユーザー Nzt3Nzt3
提出日時 2022-12-22 23:14:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 1,762 ms
コンパイル使用メモリ 199,784 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 03:38:30
合計ジャッジ時間 2,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,820 KB
testcase_01 AC 14 ms
6,816 KB
testcase_02 AC 10 ms
6,820 KB
testcase_03 AC 12 ms
6,820 KB
testcase_04 AC 10 ms
6,816 KB
testcase_05 AC 10 ms
6,820 KB
testcase_06 AC 20 ms
6,816 KB
testcase_07 AC 10 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int T;
  cin>>T;
  while(T--){
    int A,X;
    cin>>X>>A;
    long long ans=1e18;
    for(long long i=1;i<=A;i++){
      long long t=A/i,now=X*i;
      now+=(t+1)*(t+1)*(A%i)+t*t*(i-A%i);
      ans=min(ans,now);
    }
    cout<<ans<<'\n';
  }  
}
0