結果

問題 No.666 1000000007で割るだけ
ユーザー 👑 p-adic
提出日時 2018-03-31 16:59:59
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 947 ms
コンパイル使用メモリ 54,516 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 03:23:24
合計ジャッジ時間 1,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <list>
#include <string>
#include <stdint.h>
using namespace std;
using uint = unsigned int;
using int64 = int64_t;
using uint64 = uint64_t;

int main()
{

  uint64 A;
  uint64 B;
  cin >> A >> B;
  cout << ( A * B ) % 1000000007 << "\n";
  
}
0