結果

問題 No.388 階段 (1)
ユーザー kaoetayakaoetaya
提出日時 2016-12-09 17:22:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 2,786 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-11-28 16:23:19
合計ジャッジ時間 5,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,084 KB
testcase_01 AC 107 ms
53,184 KB
testcase_02 AC 102 ms
53,024 KB
testcase_03 AC 111 ms
54,144 KB
testcase_04 AC 113 ms
54,080 KB
testcase_05 AC 101 ms
52,968 KB
testcase_06 AC 113 ms
54,184 KB
testcase_07 AC 117 ms
54,108 KB
testcase_08 AC 117 ms
53,992 KB
testcase_09 AC 117 ms
54,176 KB
testcase_10 AC 112 ms
54,112 KB
testcase_11 AC 103 ms
53,944 KB
testcase_12 AC 114 ms
54,004 KB
testcase_13 AC 102 ms
52,676 KB
testcase_14 AC 115 ms
54,040 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