結果
問題 | No.560 ふしぎなナップサック |
ユーザー | OlderInvestor |
提出日時 | 2017-09-21 15:31:05 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 552 bytes |
コンパイル時間 | 3,140 ms |
コンパイル使用メモリ | 74,428 KB |
実行使用メモリ | 41,748 KB |
最終ジャッジ日時 | 2024-04-26 06:29:43 |
合計ジャッジ時間 | 5,585 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 113 ms
40,084 KB |
testcase_04 | AC | 111 ms
40,020 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
package yukicoder; import java.util.Scanner; public class No560 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int m = sc.nextInt(); int n = sc.nextInt(); for(int i = 0; i < n; i++) { double random = Math.random(); if(random <= 0.3333333333333333) { m *= 2; } else if(random <= 0.6666666666666666) { m++; } else { m = 0; } } System.out.println(m); } }