結果

問題 No.666 1000000007で割るだけ
ユーザー ei1333333
提出日時 2018-03-24 00:08:12
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 191,924 KB
最終ジャッジ日時 2025-01-05 09:30:39
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using int64 = long long;
const int mod = 1e9 + 7;

int main() {
  int64 A, B;
  cin >> A >> B;
  cout << A * B % mod << endl;
}
0