結果
問題 | No.666 1000000007で割るだけ |
ユーザー |
![]() |
提出日時 | 2018-09-30 17:05:08 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 240 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 24,064 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 09:13:11 |
合計ジャッジ時間 | 929 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%llu %llu", &A, &B); | ~~~~~^~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){unsigned long long int A, B;scanf("%llu %llu", &A, &B);printf("%llu\n", (A % 1000000007 * B % 1000000007) % 1000000007);return 0;}