Submission #790743


Source Code Expand

#include <iostream>

using namespace std;

int main()
{
	typedef unsigned long long long int tull;

	tull n = 10000000;
	tull a,b,c;
	tull x;
	tull syo = 1000000007;

	cin >> a >> b >> c;

	x = a * b * c;

	cout << x % syo << endl;

}

Submission Info

Submission Time
Task B - 直方体
User Yasu4204
Language C++14 (GCC 5.4.1)
Score 0
Code Size 253 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:7:29: error: ‘long long long’ is too long for GCC
  typedef unsigned long long long int tull;
                             ^