結果

問題 No.56 消費税
ユーザー paraskevidekatriaphobia
提出日時 2018-12-14 15:44:57
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 3,316 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 54,568 KB
最終ジャッジ日時 2024-09-25 05:10:43
合計ジャッジ時間 7,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package yukicoder;

import java.util.Scanner;

/**
 *
 * @author hjhto
 */
public class YukicoderNo56 {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        Scanner sc = new Scanner(System.in);
        
        int a = sc.nextInt();
        int b = sc.nextInt();
        
        System.out.println((a*(100+b))/100);
    }
    
}
0