結果
問題 | No.218 経験値1.5倍 |
ユーザー | ルッツファン |
提出日時 | 2015-11-28 11:20:52 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 65 ms / 2,000 ms |
コード長 | 1,116 bytes |
コンパイル時間 | 2,995 ms |
コンパイル使用メモリ | 74,648 KB |
実行使用メモリ | 50,612 KB |
最終ジャッジ日時 | 2024-06-09 09:30:15 |
合計ジャッジ時間 | 5,559 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
50,296 KB |
testcase_01 | AC | 49 ms
50,244 KB |
testcase_02 | AC | 48 ms
50,372 KB |
testcase_03 | AC | 52 ms
50,000 KB |
testcase_04 | AC | 52 ms
50,280 KB |
testcase_05 | AC | 50 ms
49,924 KB |
testcase_06 | AC | 50 ms
50,392 KB |
testcase_07 | AC | 52 ms
50,328 KB |
testcase_08 | AC | 53 ms
50,116 KB |
testcase_09 | AC | 49 ms
49,836 KB |
testcase_10 | AC | 50 ms
50,260 KB |
testcase_11 | AC | 53 ms
50,032 KB |
testcase_12 | AC | 52 ms
49,984 KB |
testcase_13 | AC | 49 ms
50,024 KB |
testcase_14 | AC | 53 ms
50,320 KB |
testcase_15 | AC | 54 ms
50,304 KB |
testcase_16 | AC | 52 ms
50,120 KB |
testcase_17 | AC | 53 ms
50,040 KB |
testcase_18 | AC | 53 ms
50,276 KB |
testcase_19 | AC | 65 ms
50,612 KB |
testcase_20 | AC | 52 ms
49,992 KB |
testcase_21 | AC | 53 ms
49,984 KB |
testcase_22 | AC | 52 ms
50,132 KB |
testcase_23 | AC | 57 ms
49,744 KB |
testcase_24 | AC | 55 ms
50,236 KB |
testcase_25 | AC | 51 ms
50,300 KB |
testcase_26 | AC | 51 ms
50,252 KB |
testcase_27 | AC | 51 ms
50,252 KB |
testcase_28 | AC | 54 ms
50,156 KB |
testcase_29 | AC | 52 ms
50,224 KB |
testcase_30 | AC | 50 ms
50,248 KB |
ソースコード
package yukicoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class yukicoder017 { public static void main(String[] args){ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String tes = null; try { tes = br.readLine(); } catch (IOException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } int a = Integer.parseInt(tes); try { tes = br.readLine(); } catch (IOException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } int b = Integer.parseInt(tes); try { tes = br.readLine(); } catch (IOException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } int c = Integer.parseInt(tes); int max = a; int bcount=0,ccount=0; while(max>0){ max = max - b; bcount++; } max = a; while(max>0){ max = max - c; ccount++; } if(((bcount*2)/3) >= ccount){ System.out.println("YES"); }else{ System.out.println("NO"); } } }