結果

問題 No.388 階段 (1)
ユーザー kaoetayakaoetaya
提出日時 2016-12-09 17:21:50
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 3,204 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-11-28 16:22:59
合計ジャッジ時間 5,828 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 125 ms
41,172 KB
testcase_02 AC 115 ms
40,280 KB
testcase_03 AC 129 ms
41,132 KB
testcase_04 WA -
testcase_05 AC 129 ms
41,164 KB
testcase_06 AC 129 ms
41,652 KB
testcase_07 AC 130 ms
41,364 KB
testcase_08 AC 119 ms
40,304 KB
testcase_09 AC 128 ms
41,140 KB
testcase_10 WA -
testcase_11 AC 128 ms
41,152 KB
testcase_12 AC 125 ms
41,096 KB
testcase_13 AC 126 ms
41,296 KB
testcase_14 AC 127 ms
41,156 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