Submission #179993


Source Code Expand

import java.io.*;

class PP {
	BufferedReader reader;
	void solve() {
		try {
			reader = new BufferedReader(new InputStreamReader(System.in));
			System.out.println(ns()+"pp");
		}
		catch(Exception e){
			e.printStackTrace();
		}
	}
	int[] nis() throws IOException {
		String[] str = nss();
		int[] ans = new int[str.length];
		for(int i = 0;i < str.length;i++) {
			ans[i] = Integer.parseInt(str[i]);
		}
		return ans;
	}
	int ni() throws IOException {
		return Integer.parseInt(ns());
	}
	String ns() throws IOException {
		return reader.readLine();
	}
	String[] nss() throws IOException {
		return ns().split(" ");
	}
}

public class Main {
	public static void main(String[] args) {
		new PP().solve();
	}
}

Submission Info

Submission Time
Task A - ハンドルネーム
User tanshiono
Language Java (OpenJDK 1.7.0)
Score 100
Code Size 748 Byte
Status AC
Exec Time 564 ms
Memory 20692 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 487 ms 20652 KB
sample_02.txt AC 427 ms 20652 KB
test_aaaaaaaaaa.txt AC 431 ms 20660 KB
test_myonmyon.txt AC 564 ms 20692 KB
test_nemui.txt AC 402 ms 20656 KB
test_onakasuita.txt AC 458 ms 20660 KB
test_p.txt AC 445 ms 20640 KB