Submission #180002


Source Code Expand

import java.math.BigInteger;
import java.util.*;

public class Main {
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
			
			String n = sc.nextLine();
			//ArrayList<Integer> al = new ArrayList<Integer>();
			System.out.println(n + "pp");
	}
	
	public static int mathGcd(int x, int y) {
		int max = Math.max(x, y);
		int min = Math.min(x, y);
		int bef = 1;
		while(true) {
			bef = max % min;
			if (bef == 0)break;
			max = min;
			min = bef;
		}
		return min;
	}

}

Submission Info

Submission Time
Task A - ハンドルネーム
User kiki33
Language Java (OpenJDK 1.7.0)
Score 100
Code Size 557 Byte
Status AC
Exec Time 666 ms
Memory 23280 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 5
Set Name Test Cases
All test_aaaaaaaaaa.txt, test_myonmyon.txt, test_nemui.txt, test_onakasuita.txt, test_p.txt
Case Name Status Exec Time Memory
sample_01.txt AC 652 ms 23280 KB
sample_02.txt AC 596 ms 23156 KB
test_aaaaaaaaaa.txt AC 602 ms 23128 KB
test_myonmyon.txt AC 647 ms 23148 KB
test_nemui.txt AC 666 ms 23136 KB
test_onakasuita.txt AC 571 ms 23148 KB
test_p.txt AC 629 ms 23140 KB