結果

問題 No.384 マス埋めゲーム2
ユーザー MitI_7MitI_7
提出日時 2016-10-05 09:57:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 317 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,444 KB
最終ジャッジ日時 2024-11-21 17:15:58
合計ジャッジ時間 23,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
15,744 KB
testcase_01 TLE -
testcase_02 AC 29 ms
17,316 KB
testcase_03 AC 30 ms
15,744 KB
testcase_04 AC 31 ms
17,312 KB
testcase_05 AC 29 ms
16,000 KB
testcase_06 AC 30 ms
17,444 KB
testcase_07 AC 29 ms
15,744 KB
testcase_08 AC 30 ms
17,440 KB
testcase_09 AC 30 ms
15,744 KB
testcase_10 TLE -
testcase_11 AC 31 ms
15,872 KB
testcase_12 AC 176 ms
17,316 KB
testcase_13 AC 170 ms
15,872 KB
testcase_14 AC 34 ms
17,440 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 31 ms
10,496 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    h, w, n, k = map(int, input().split())

    no = 0
    while True:
        if h == 1 and w == 1:
            break
        if h > w:
            h -= 1
        else:
            w -= 1
        no += 1
        no %= n

    print("YES" if no + 1 == k else "NO")


if __name__ == '__main__':
    main()
0