結果

問題 No.231 めぐるはめぐる (1)
ユーザー bigbear90560bigbear90560
提出日時 2015-07-23 00:54:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 204 ms / 1,000 ms
コード長 1,119 bytes
コンパイル時間 4,060 ms
コンパイル使用メモリ 76,520 KB
実行使用メモリ 43,404 KB
最終ジャッジ日時 2024-11-07 23:42:48
合計ジャッジ時間 7,186 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
43,404 KB
testcase_01 AC 155 ms
41,752 KB
testcase_02 AC 143 ms
41,316 KB
testcase_03 AC 192 ms
42,724 KB
testcase_04 AC 204 ms
43,112 KB
testcase_05 AC 190 ms
42,384 KB
testcase_06 AC 192 ms
42,728 KB
testcase_07 AC 160 ms
41,520 KB
testcase_08 AC 188 ms
42,308 KB
testcase_09 AC 132 ms
41,284 KB
testcase_10 AC 133 ms
41,620 KB
testcase_11 AC 130 ms
41,108 KB
testcase_12 AC 189 ms
42,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * No.231 めぐるはめぐる (1)
 */
public class AroundAndAround {

	public static void main(String[] args) {

		final int DEATH_PENA = 30000;
		final int FINISH_EXP = DEATH_PENA * 100;
		final int MAX_PLAY_TIME = 6;
		
		// 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();	// ダンジョン数
        int b = 0;	// 1時間あたりの経験値
        int c = 0;	// 1時間あたりの死亡数

    	int exp = 0;
    	int dnum = 0;
    	boolean result = false;
    	
        for (int i=0;i<a;i++) {
        	b = sc.nextInt();
        	c = sc.nextInt();
        	// 6時間あたりの取得経験値
        	exp = (b - DEATH_PENA * c) * MAX_PLAY_TIME;

        	if (FINISH_EXP <= exp) {
        		result = true;
        		dnum = i + 1;
        	}
        }

        if (result) {
        	System.out.println("YES");
        	for (int i=0; i<MAX_PLAY_TIME;i++) {
        		System.out.println(dnum);
        	}
        } else {
        	System.out.println("NO");
        }
	}
}
0