Submission #616064


Source Code Expand

import java.awt.Frame;
import java.net.NetworkInterface;
import java.util.*;

public class Main {
	static long gcd(long a,long b){
		return b == 0 ? a : gcd(b, a%b);
	}
	static long lcm(long a, long b){
		return a*b/gcd(a, b);
	}
	static int[] dx = {0,1,0,-1};//→↓←↑
	static int[] dy = {1,0,-1,0};
	static class Pair{
		long weight,value;
		public Pair(long weight,long value) {
			// TODO Auto-generated constructor stub
			this.weight = weight;
			this.value = value;
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		long a = sc.nextLong();
		System.out.println(a/25);
	}
}

Submission Info

Submission Time
Task A - ニコニコ数
User kou
Language Java (OpenJDK 1.7.0)
Score 60
Code Size 661 Byte
Status AC
Exec Time 378 ms
Memory 23952 KB

Judge Result

Set Name Sample Subtask1
Score / Max Score 0 / 0 60 / 60
Status
AC × 2
AC × 17
Set Name Test Cases
Sample sample_01.txt, sample_02.txt
Subtask1 sample_01.txt, sample_02.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt
Case Name Status Exec Time Memory
sample_01.txt AC 370 ms 23952 KB
sample_02.txt AC 366 ms 23840 KB
test_01.txt AC 367 ms 23824 KB
test_02.txt AC 373 ms 23936 KB
test_03.txt AC 359 ms 23936 KB
test_04.txt AC 371 ms 23848 KB
test_05.txt AC 370 ms 23840 KB
test_06.txt AC 375 ms 23952 KB
test_07.txt AC 378 ms 23872 KB
test_08.txt AC 377 ms 23944 KB
test_09.txt AC 367 ms 23916 KB
test_10.txt AC 370 ms 23952 KB
test_11.txt AC 364 ms 23892 KB
test_12.txt AC 378 ms 23884 KB
test_13.txt AC 362 ms 23916 KB
test_14.txt AC 365 ms 23824 KB
test_15.txt AC 371 ms 23944 KB