結果

問題 No.388 階段 (1)
ユーザー kaoetayakaoetaya
提出日時 2016-12-09 17:21:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 2,881 ms
コンパイル使用メモリ 73,608 KB
実行使用メモリ 41,276 KB
最終ジャッジ日時 2024-05-06 10:23:45
合計ジャッジ時間 5,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 109 ms
40,880 KB
testcase_02 AC 109 ms
41,028 KB
testcase_03 AC 105 ms
39,948 KB
testcase_04 WA -
testcase_05 AC 94 ms
39,732 KB
testcase_06 AC 108 ms
41,036 KB
testcase_07 AC 109 ms
41,096 KB
testcase_08 AC 98 ms
40,260 KB
testcase_09 AC 111 ms
41,276 KB
testcase_10 WA -
testcase_11 AC 106 ms
40,840 KB
testcase_12 AC 107 ms
41,200 KB
testcase_13 AC 106 ms
40,908 KB
testcase_14 AC 105 ms
40,416 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