結果

問題 No.552 十分簡単な星1の問題
ユーザー GodNegotoGodNegoto
提出日時 2019-12-03 13:38:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 3,202 ms
コンパイル使用メモリ 78,736 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-05-05 09:25:27
合計ジャッジ時間 9,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,812 KB
testcase_01 AC 112 ms
41,320 KB
testcase_02 AC 106 ms
41,120 KB
testcase_03 AC 110 ms
40,936 KB
testcase_04 AC 111 ms
41,264 KB
testcase_05 AC 105 ms
40,996 KB
testcase_06 AC 103 ms
40,948 KB
testcase_07 AC 107 ms
41,120 KB
testcase_08 AC 92 ms
40,164 KB
testcase_09 AC 91 ms
39,928 KB
testcase_10 AC 101 ms
40,872 KB
testcase_11 AC 94 ms
39,928 KB
testcase_12 AC 114 ms
40,784 KB
testcase_13 AC 104 ms
40,240 KB
testcase_14 AC 100 ms
41,068 KB
testcase_15 AC 95 ms
39,720 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 115 ms
40,920 KB
testcase_21 AC 104 ms
41,344 KB
testcase_22 WA -
testcase_23 AC 104 ms
40,800 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 107 ms
41,076 KB
testcase_31 AC 100 ms
41,080 KB
testcase_32 AC 100 ms
41,044 KB
testcase_33 AC 103 ms
40,728 KB
testcase_34 AC 94 ms
39,800 KB
testcase_35 WA -
testcase_36 AC 104 ms
41,064 KB
testcase_37 WA -
testcase_38 AC 110 ms
41,468 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 88 ms
39,932 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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++) {
			if(c[i] == 48) {
			}
			else {
				System.out.print(c[i]);
			}
		}
		System.out.print("0");
	}
}
0