結果

問題 No.1656 Recuperation
ユーザー harurun
提出日時 2021-08-02 19:04:59
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 1,008 ms
コンパイル使用メモリ 66,720 KB
最終ジャッジ日時 2025-01-23 13:43:32
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <unistd.h>
using namespace std;

int main(){
  int T;
  cin>>T;
  for(int i=0;i<T;i++){
    long long A,B;
    cin>>A>>B;
    cout<<(A+1)*B<<endl;
  }
  
  usleep(100*1000);// fastest code 対策
  return 0;
}
0