結果

問題 No.552 十分簡単な星1の問題
ユーザー tookunn_1213tookunn_1213
提出日時 2017-08-11 22:22:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,563 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 78,612 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-04-20 22:32:57
合計ジャッジ時間 5,717 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,672 KB
testcase_01 AC 51 ms
37,020 KB
testcase_02 AC 51 ms
37,144 KB
testcase_03 AC 52 ms
36,944 KB
testcase_04 AC 52 ms
37,220 KB
testcase_05 AC 52 ms
36,856 KB
testcase_06 AC 54 ms
36,800 KB
testcase_07 AC 52 ms
37,060 KB
testcase_08 AC 53 ms
37,100 KB
testcase_09 AC 51 ms
37,060 KB
testcase_10 AC 52 ms
36,936 KB
testcase_11 AC 51 ms
37,192 KB
testcase_12 AC 51 ms
36,808 KB
testcase_13 AC 52 ms
37,084 KB
testcase_14 AC 52 ms
36,792 KB
testcase_15 AC 52 ms
36,808 KB
testcase_16 AC 53 ms
36,808 KB
testcase_17 AC 49 ms
37,148 KB
testcase_18 AC 52 ms
36,792 KB
testcase_19 AC 51 ms
37,092 KB
testcase_20 AC 49 ms
37,068 KB
testcase_21 AC 51 ms
37,072 KB
testcase_22 AC 50 ms
37,000 KB
testcase_23 AC 54 ms
36,952 KB
testcase_24 AC 51 ms
36,796 KB
testcase_25 AC 51 ms
37,248 KB
testcase_26 AC 55 ms
37,060 KB
testcase_27 AC 50 ms
37,008 KB
testcase_28 AC 51 ms
37,136 KB
testcase_29 AC 50 ms
36,940 KB
testcase_30 AC 53 ms
37,084 KB
testcase_31 AC 51 ms
37,248 KB
testcase_32 AC 50 ms
36,808 KB
testcase_33 AC 49 ms
37,060 KB
testcase_34 AC 48 ms
37,196 KB
testcase_35 AC 50 ms
36,792 KB
testcase_36 AC 53 ms
37,060 KB
testcase_37 AC 51 ms
36,788 KB
testcase_38 AC 51 ms
36,680 KB
testcase_39 AC 50 ms
36,940 KB
testcase_40 AC 51 ms
37,116 KB
testcase_41 AC 52 ms
37,132 KB
testcase_42 AC 51 ms
36,932 KB
testcase_43 AC 50 ms
36,772 KB
testcase_44 AC 50 ms
36,804 KB
testcase_45 AC 55 ms
37,060 KB
testcase_46 AC 51 ms
36,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.NoSuchElementException;

public class Main {
	String N;

	public void solve() {
		N = next();

		if(N.equals("0")){
			out.println("0");
		}else{
			out.println(N + "0");
		}
	}

	public static void main(String[] args) {
		out.flush();
		new Main().solve();
		out.close();
	}

	/* Input */
	private static final InputStream in = System.in;
	private static final PrintWriter out = new PrintWriter(System.out);
	private final byte[] buffer = new byte[2048];
	private int p = 0;
	private int buflen = 0;

	private boolean hasNextByte() {
		if (p < buflen)
			return true;
		p = 0;
		try {
			buflen = in.read(buffer);
		} catch (IOException e) {
			e.printStackTrace();
		}
		if (buflen <= 0)
			return false;
		return true;
	}

	public boolean hasNext() {
		while (hasNextByte() && !isPrint(buffer[p])) {
			p++;
		}
		return hasNextByte();
	}

	private boolean isPrint(int ch) {
		if (ch >= '!' && ch <= '~')
			return true;
		return false;
	}

	private int nextByte() {
		if (!hasNextByte())
			return -1;
		return buffer[p++];
	}

	public String next() {
		if (!hasNext())
			throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int b = -1;
		while (isPrint((b = nextByte()))) {
			sb.appendCodePoint(b);
		}
		return sb.toString();
	}

	public int nextInt() {
		return Integer.parseInt(next());
	}

	public long nextLong() {
		return Long.parseLong(next());
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}
}
0