結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 17 ms
5,376 KB
testcase_02 AC 12 ms
5,376 KB
testcase_03 AC 15 ms
5,376 KB
testcase_04 AC 11 ms
5,376 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 25 ms
5,376 KB
testcase_07 AC 12 ms
5,376 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