結果

問題 No.544 Delete 7
ユーザー Shun_PIShun_PI
提出日時 2017-07-14 22:37:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 97 ms / 1,000 ms
コード長 2,163 bytes
コンパイル時間 2,641 ms
コンパイル使用メモリ 79,448 KB
実行使用メモリ 52,584 KB
最終ジャッジ日時 2024-11-21 16:08:01
合計ジャッジ時間 7,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
50,756 KB
testcase_01 AC 77 ms
50,968 KB
testcase_02 AC 72 ms
52,320 KB
testcase_03 AC 72 ms
52,584 KB
testcase_04 AC 86 ms
52,412 KB
testcase_05 AC 81 ms
50,784 KB
testcase_06 AC 79 ms
50,864 KB
testcase_07 AC 73 ms
50,868 KB
testcase_08 AC 71 ms
50,948 KB
testcase_09 AC 74 ms
50,960 KB
testcase_10 AC 76 ms
51,168 KB
testcase_11 AC 73 ms
50,824 KB
testcase_12 AC 86 ms
51,040 KB
testcase_13 AC 80 ms
51,404 KB
testcase_14 AC 81 ms
51,188 KB
testcase_15 AC 74 ms
50,536 KB
testcase_16 AC 72 ms
50,764 KB
testcase_17 AC 82 ms
50,848 KB
testcase_18 AC 80 ms
50,856 KB
testcase_19 AC 73 ms
50,948 KB
testcase_20 AC 70 ms
50,956 KB
testcase_21 AC 71 ms
50,920 KB
testcase_22 AC 82 ms
50,916 KB
testcase_23 AC 76 ms
50,976 KB
testcase_24 AC 72 ms
50,528 KB
testcase_25 AC 97 ms
51,212 KB
testcase_26 AC 74 ms
50,780 KB
testcase_27 AC 70 ms
50,680 KB
testcase_28 AC 68 ms
50,532 KB
testcase_29 AC 79 ms
51,964 KB
testcase_30 AC 68 ms
50,972 KB
testcase_31 AC 69 ms
50,736 KB
testcase_32 AC 66 ms
50,884 KB
testcase_33 AC 69 ms
50,504 KB
testcase_34 AC 67 ms
50,652 KB
testcase_35 AC 78 ms
50,676 KB
testcase_36 AC 70 ms
50,748 KB
testcase_37 AC 74 ms
50,984 KB
testcase_38 AC 71 ms
50,784 KB
testcase_39 AC 71 ms
50,884 KB
testcase_40 AC 72 ms
51,124 KB
testcase_41 AC 77 ms
51,052 KB
testcase_42 AC 75 ms
50,948 KB
testcase_43 AC 88 ms
51,024 KB
testcase_44 AC 73 ms
51,348 KB
testcase_45 AC 72 ms
50,768 KB
testcase_46 AC 85 ms
51,104 KB
testcase_47 AC 74 ms
50,540 KB
testcase_48 AC 70 ms
50,920 KB
testcase_49 AC 69 ms
50,788 KB
testcase_50 AC 66 ms
50,772 KB
testcase_51 AC 84 ms
51,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.NoSuchElementException;
 
public class Main {
	private static FastScanner sc = new FastScanner();
	
	public static void main(String[] args) {
		int N = sc.nextInt();
		
		int temp = N;
		int digit = 0;
		int A = 0;
		int B = 0;
		while(temp != 0) {
			if(temp%10 == 7) {
				A += 6 * Math.pow(10, digit);
				B += Math.pow(10, digit);
			} else {
				A += (temp%10) * Math.pow(10, digit);
			}
			
			temp /= 10;
			digit++;
		}
		
		System.out.println(A + " " + B);
	}
	
	static class FastScanner {
        private final InputStream in = System.in;
        private final byte[] buffer = new byte[1024];
        private int ptr = 0;
        private int buflen = 0;
        private boolean hasNextByte() {
            if(ptr < buflen) {
                return true;
            } else {
                ptr = 0;
                try {
                    buflen = in.read(buffer);
                } catch(IOException e) {
                    e.printStackTrace();
                }
                if(buflen <= 0) {
                    return false;
                }
            }
            return true;
        }
        private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
        private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
        private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}
        public boolean hasNext() { skipUnprintable(); return hasNextByte();}
        public String next() {
            if (!hasNext()) throw new NoSuchElementException();
            StringBuilder sb = new StringBuilder();
            int b = readByte();
            while(isPrintableChar(b)) {
                sb.appendCodePoint(b);
                b = readByte();
            }
            return sb.toString();
        }
        public long nextLong() {
            return Long.parseLong(next());
        }
        public int nextInt(){
            return Integer.parseInt(next());
        }
        public double nextDouble(){
            return Double.parseDouble(next());
        }
    }
}
0