結果
| 問題 |
No.384 マス埋めゲーム2
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-03-17 15:41:03 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 130 bytes |
| コンパイル時間 | 544 ms |
| コンパイル使用メモリ | 62,848 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-30 22:43:22 |
| 合計ジャッジ時間 | 1,316 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 WA * 7 |
ソースコード
#include <iostream>
using namespace std;
int main(){
int h,w,n,k;cin>>h>>w>>n>>k;
cout << (k==(h+w-1)%n+1?"NO":"YES") << endl;
}