結果

問題 No.552 十分簡単な星1の問題
ユーザー GrenacheGrenache
提出日時 2017-08-11 22:21:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 3,413 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-10-12 20:56:08
合計ジャッジ時間 9,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder552 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		String n = sc.next();

		if (n.equals("0")) {
			pr.println(n);
		} else {
			pr.print(n);
			pr.println("0");
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0