結果
| 問題 |
No.666 1000000007で割るだけ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-07-08 15:07:19 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 191 bytes |
| コンパイル時間 | 359 ms |
| コンパイル使用メモリ | 54,848 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-07 05:14:25 |
| 合計ジャッジ時間 | 1,309 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 WA * 13 |
ソースコード
#include<iostream>
using namespace std;
int main()
{
long long int a,b,num;
cin>>a;
cin>>b;
a %= 1000000007;
b %= 1000000007;
num = a*b;
cout<<num;
return 0;
}