結果
| 問題 |
No.384 マス埋めゲーム2
|
| コンテスト | |
| ユーザー |
tanimani364
|
| 提出日時 | 2021-03-29 14:52:51 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 334 bytes |
| コンパイル時間 | 225 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 65,152 KB |
| 最終ジャッジ日時 | 2024-11-29 09:49:00 |
| 合計ジャッジ時間 | 2,900 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 WA * 2 |
ソースコード
#!/usr/bin/env python3
#coding:utf-8
import math
import string
import random
from sys import stdin
# import numpy as np
# from matplotlib import pyplot as plt
def main():
read=stdin.readline
#edit here!
h,w,n,k=map(int,read().split())
if (h+w-1)%n==k:
print("YES")
else:
print("NO")
if __name__ == '__main__':
main()
tanimani364