Submission #793641
Source Code Expand
#include <iostream>
#include <cstdio>
#include <climits>
#include <cstdlib>
#define N 1000000007
using namespace std;
int main(void) {
long long int a, b, c, d;
scanf("%lld %lld %lld", &a, &b, &c);
d = a*b;
d %= N;
d *= c;
d %= N;
printf("%lld\n", d);
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - 直方体 |
| User | small |
| Language | C++14 (GCC 5.4.1) |
| Score | 100 |
| Code Size | 300 Byte |
| Status | AC |
| Exec Time | 4 ms |
| Memory | 256 KiB |
Compile Error
./Main.cpp: In function ‘int main()’:
./Main.cpp:13:37: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld %lld %lld", &a, &b, &c);
^
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt |
| All | 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 0_00.txt | AC | 4 ms | 256 KiB |
| 0_01.txt | AC | 4 ms | 256 KiB |
| 0_02.txt | AC | 4 ms | 256 KiB |
| 0_03.txt | AC | 4 ms | 256 KiB |
| 1_00.txt | AC | 4 ms | 256 KiB |
| 1_01.txt | AC | 4 ms | 256 KiB |
| 1_02.txt | AC | 4 ms | 256 KiB |
| 1_03.txt | AC | 4 ms | 256 KiB |
| 1_04.txt | AC | 4 ms | 256 KiB |