結果

問題 No.46 はじめのn歩
ユーザー kou6839kou6839
提出日時 2014-11-18 23:21:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 570 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 76,512 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2025-01-02 17:47:30
合計ジャッジ時間 4,425 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,248 KB
testcase_01 AC 113 ms
54,372 KB
testcase_02 AC 110 ms
54,476 KB
testcase_03 AC 108 ms
54,148 KB
testcase_04 AC 108 ms
54,140 KB
testcase_05 AC 108 ms
54,236 KB
testcase_06 AC 107 ms
54,100 KB
testcase_07 AC 111 ms
54,124 KB
testcase_08 AC 570 ms
54,116 KB
testcase_09 AC 110 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int ans=0;
		int ho=n;
		n=0;
		while(n<m){
			ans++;
			n+=ho;
		}
		System.out.println(ans);
	}
}	
0