結果

問題 No.544 Delete 7
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-07-14 23:05:38
言語 Java
(openjdk 23)
結果
AC  
実行時間 162 ms / 1,000 ms
コード長 349 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 76,984 KB
実行使用メモリ 55,200 KB
最終ジャッジ日時 2024-11-21 16:11:54
合計ジャッジ時間 11,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 48
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int M = 0;
        for(int i=0; i<=9; i++){
            int p = (int)Math.pow(10,i);
            if((N%(10*p))/p==7)M+=p;
        }
        System.out.println((N-M)+" "+M);
    }
}
0