結果

問題 No.544 Delete 7
ユーザー hhgfhn1hhgfhn1
提出日時 2018-12-18 01:01:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 479 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 76,464 KB
実行使用メモリ 55,188 KB
最終ジャッジ日時 2024-09-25 07:39:04
合計ジャッジ時間 12,914 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
55,044 KB
testcase_01 AC 156 ms
54,924 KB
testcase_02 AC 154 ms
54,744 KB
testcase_03 AC 156 ms
55,184 KB
testcase_04 AC 155 ms
54,760 KB
testcase_05 AC 157 ms
55,012 KB
testcase_06 AC 156 ms
54,900 KB
testcase_07 AC 155 ms
54,756 KB
testcase_08 AC 157 ms
54,964 KB
testcase_09 AC 160 ms
55,028 KB
testcase_10 AC 158 ms
54,760 KB
testcase_11 AC 156 ms
54,828 KB
testcase_12 AC 157 ms
55,116 KB
testcase_13 AC 156 ms
54,972 KB
testcase_14 AC 158 ms
54,956 KB
testcase_15 AC 155 ms
54,896 KB
testcase_16 AC 142 ms
54,612 KB
testcase_17 AC 154 ms
54,636 KB
testcase_18 AC 154 ms
55,052 KB
testcase_19 AC 156 ms
54,684 KB
testcase_20 AC 156 ms
55,140 KB
testcase_21 AC 155 ms
55,028 KB
testcase_22 AC 161 ms
54,964 KB
testcase_23 AC 155 ms
54,856 KB
testcase_24 AC 153 ms
54,916 KB
testcase_25 AC 153 ms
54,984 KB
testcase_26 AC 156 ms
54,772 KB
testcase_27 AC 155 ms
54,992 KB
testcase_28 AC 155 ms
54,940 KB
testcase_29 AC 156 ms
55,180 KB
testcase_30 AC 156 ms
54,852 KB
testcase_31 AC 158 ms
54,840 KB
testcase_32 AC 153 ms
55,108 KB
testcase_33 AC 155 ms
54,728 KB
testcase_34 AC 159 ms
55,036 KB
testcase_35 AC 159 ms
55,056 KB
testcase_36 AC 147 ms
54,316 KB
testcase_37 AC 154 ms
55,104 KB
testcase_38 AC 156 ms
55,188 KB
testcase_39 AC 156 ms
54,964 KB
testcase_40 AC 158 ms
54,960 KB
testcase_41 AC 159 ms
54,916 KB
testcase_42 AC 157 ms
54,980 KB
testcase_43 AC 141 ms
54,568 KB
testcase_44 AC 156 ms
54,760 KB
testcase_45 AC 156 ms
54,904 KB
testcase_46 AC 157 ms
54,768 KB
testcase_47 AC 160 ms
54,884 KB
testcase_48 AC 164 ms
54,596 KB
testcase_49 AC 154 ms
55,028 KB
testcase_50 AC 155 ms
54,932 KB
testcase_51 AC 157 ms
55,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		String s=String.valueOf(n);
		String a="";
		String b="";
		for(int i=0;i<s.length();i++) {
			char c=s.charAt(i);
			if(c=='7') {
				a+="6";
				b+="1";
			}else {
				a+=String.valueOf(c);
				b+="0";
			}
		}
		System.out.println(Integer.parseInt(a)+" "+Integer.parseInt(b));
	}
}
0