結果

問題 No.388 階段 (1)
ユーザー newoota0331newoota0331
提出日時 2016-09-01 17:26:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-11-15 17:00:17
合計ジャッジ時間 4,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,804 KB
testcase_01 AC 131 ms
53,688 KB
testcase_02 AC 116 ms
52,912 KB
testcase_03 AC 128 ms
53,836 KB
testcase_04 AC 128 ms
53,716 KB
testcase_05 AC 116 ms
52,740 KB
testcase_06 AC 130 ms
54,172 KB
testcase_07 AC 128 ms
53,828 KB
testcase_08 AC 128 ms
53,720 KB
testcase_09 AC 116 ms
53,036 KB
testcase_10 AC 128 ms
53,884 KB
testcase_11 AC 139 ms
53,860 KB
testcase_12 AC 127 ms
53,828 KB
testcase_13 AC 127 ms
54,104 KB
testcase_14 AC 128 ms
53,824 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);
		int a,b,i;
		
		a = sc.nextInt();
		b = sc.nextInt();
		
		for(i=1;a>=b;i++){
			a-=b;
		}
		
		System.out.println(i);
	}
}
0