結果

問題 No.169 何分かかるの!?
ユーザー kohaku_kohaku
提出日時 2016-11-13 07:29:25
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 1,935 ms
コンパイル使用メモリ 77,976 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-11-25 21:49:47
合計ジャッジ時間 5,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 1 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int K = sc.nextInt();
        int S = sc.nextInt();
        int r = S*100/K;
        System.out.println(r);
    }
}
0