結果

問題 No.388 階段 (1)
ユーザー taketake
提出日時 2016-07-10 14:34:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-10-13 10:13:48
合計ジャッジ時間 4,305 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,148 KB
testcase_01 AC 121 ms
41,212 KB
testcase_02 AC 123 ms
41,384 KB
testcase_03 AC 123 ms
41,308 KB
testcase_04 AC 116 ms
41,160 KB
testcase_05 AC 119 ms
41,004 KB
testcase_06 AC 118 ms
41,268 KB
testcase_07 AC 108 ms
41,080 KB
testcase_08 AC 120 ms
41,276 KB
testcase_09 AC 119 ms
40,912 KB
testcase_10 AC 130 ms
41,248 KB
testcase_11 AC 119 ms
41,292 KB
testcase_12 AC 109 ms
40,936 KB
testcase_13 AC 117 ms
41,204 KB
testcase_14 AC 119 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

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

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	
	public static void main (String[] args) throws java.lang.Exception
	{

	    Scanner sc = new Scanner(System.in);

	    // s
	    int s = sc.nextInt();
	    //System.out.println(s);
	    
		// f
		int f = sc.nextInt();
		//System.out.println(f);
		
		// ans
		int ans = s / f + 1;
		System.out.println(ans);
	}
	
}
0