結果

問題 No.552 十分簡単な星1の問題
ユーザー FVRChan
提出日時 2017-09-29 12:07:20
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 76,288 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-11-15 19:50:01
合計ジャッジ時間 10,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 45 WA * 1 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		long n=Long.parseLong(sc.nextLine());
		System.out.println(n+"0");
	}
}
0