結果

問題 No.666 1000000007で割るだけ
ユーザー sashimingsashiming
提出日時 2018-05-12 13:25:34
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 1,343 ms
コンパイル使用メモリ 159,164 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 09:33:32
合計ジャッジ時間 2,286 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  ll a, b;
  cin >> a >> b;
  ll c = a * b;
  ll ans = c % 1000000007LL;
  cout << ans << "\n";
  return 0;
}
0