結果

問題 No.8017 エスパー
ユーザー マサ
提出日時 2022-09-08 21:20:47
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-11-24 17:57:49
合計ジャッジ時間 5,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int s = sc.nextInt();
        int k = sc.nextInt();
        
        System.out.println(k / s);
        sc.close();
    }
}
0