結果
問題 | No.166 マス埋めゲーム |
ユーザー | sasakki |
提出日時 | 2016-03-12 21:09:53 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 444 bytes |
コンパイル時間 | 2,162 ms |
コンパイル使用メモリ | 74,232 KB |
実行使用メモリ | 41,824 KB |
最終ジャッジ日時 | 2024-09-25 11:08:53 |
合計ジャッジ時間 | 6,883 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,488 KB |
testcase_01 | AC | 128 ms
41,324 KB |
testcase_02 | AC | 127 ms
41,320 KB |
testcase_03 | AC | 127 ms
41,824 KB |
testcase_04 | WA | - |
testcase_05 | AC | 132 ms
41,472 KB |
testcase_06 | AC | 127 ms
41,416 KB |
testcase_07 | AC | 589 ms
41,492 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 232 ms
41,204 KB |
testcase_12 | AC | 128 ms
41,448 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 129 ms
41,728 KB |
testcase_16 | AC | 127 ms
41,268 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
ソースコード
import java.util.Scanner; class main{ public static void main(String args[]){ Scanner scan = new Scanner(System.in); int H = scan.nextInt(); int W = scan.nextInt(); int N = scan.nextInt(); int K = scan.nextInt(); int S = H * W; int lose = 1; for(int i = S; i > 0; i--){ lose++; if(lose > N){ lose = 1; } } if(lose == K){ System.out.println("NO"); } else{ System.out.println("YES"); } } }