結果
問題 | No.666 1000000007で割るだけ |
ユーザー |
![]() |
提出日時 | 2018-08-18 00:19:29 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 164 bytes |
コンパイル時間 | 419 ms |
コンパイル使用メモリ | 56,696 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-11 06:07:33 |
合計ジャッジ時間 | 1,396 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#include<iostream>#include<string>#include<algorithm>using namespace std;int main(){long long int a,b;cin>>a>>b;a=a%1000000007*b%1000000007;cout<<a<<endl;}