結果

問題 No.388 階段 (1)
ユーザー kaoetayakaoetaya
提出日時 2016-12-09 17:22:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 2,865 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-05-06 10:24:07
合計ジャッジ時間 5,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,084 KB
testcase_01 AC 115 ms
41,280 KB
testcase_02 AC 112 ms
39,828 KB
testcase_03 AC 113 ms
40,996 KB
testcase_04 AC 114 ms
41,048 KB
testcase_05 AC 121 ms
41,092 KB
testcase_06 AC 115 ms
41,116 KB
testcase_07 AC 118 ms
40,912 KB
testcase_08 AC 113 ms
40,612 KB
testcase_09 AC 105 ms
39,688 KB
testcase_10 AC 118 ms
41,144 KB
testcase_11 AC 113 ms
41,052 KB
testcase_12 AC 115 ms
40,968 KB
testcase_13 AC 117 ms
41,052 KB
testcase_14 AC 112 ms
40,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Test {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
        int st = s.nextInt(),f = s.nextInt();
        int fl = 0;
        
        do{
        	st -= f;
        	fl++;

        }while(st >= 0);

        System.out.println(fl);
    }
}
0