結果

問題 No.388 階段 (1)
ユーザー GBGB
提出日時 2018-04-08 14:54:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-06-26 20:21:35
合計ジャッジ時間 5,379 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,880 KB
testcase_01 AC 115 ms
53,172 KB
testcase_02 AC 129 ms
54,080 KB
testcase_03 AC 127 ms
53,972 KB
testcase_04 AC 124 ms
53,960 KB
testcase_05 AC 129 ms
54,148 KB
testcase_06 AC 129 ms
54,124 KB
testcase_07 AC 128 ms
54,064 KB
testcase_08 AC 126 ms
54,220 KB
testcase_09 AC 128 ms
53,868 KB
testcase_10 AC 127 ms
54,036 KB
testcase_11 AC 126 ms
53,848 KB
testcase_12 AC 128 ms
54,072 KB
testcase_13 AC 127 ms
53,980 KB
testcase_14 AC 127 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main{
  public static void main(String[] args)throws IOException {

    Scanner scan=new Scanner(System.in);
    int n=Integer.parseInt(scan.next());
    int f=Integer.parseInt(scan.next());
    int floor=1;
    
    if(n<f){
      System.out.println(floor);
    }else{
      floor+=n/f;
      System.out.println(floor);
    }
  }
}
0