結果

問題 No.552 十分簡単な星1の問題
ユーザー GodNegoto
提出日時 2019-12-03 13:34:31
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 291 bytes
コンパイル時間 3,686 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-11-27 04:48:15
合計ジャッジ時間 11,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 46 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		char[] c = s.toCharArray();
		for(int i=0; i < c.length; i++) {
			System.out.print(c[i]);
		}
		System.out.print("0");
	}
}
0