Submission #1179886


Source Code Expand

import java.util.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextLong(), b = sc.nextLong(), c =sc.nextLong();
		System.out.println(a%1000000007 * b%1000000007 * c%1000000007);
	}
}

Submission Info

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

Compile Error

./Main.cpp:1:1: error: ‘import’ does not name a type
 import java.util.*;
 ^
./Main.cpp:2:1: error: expected unqualified-id before ‘public’
 public class Main {
 ^