結果
| 問題 |
No.166 マス埋めゲーム
|
| コンテスト | |
| ユーザー |
cureskol
|
| 提出日時 | 2020-04-08 21:06:45 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 161 bytes |
| コンパイル時間 | 1,383 ms |
| コンパイル使用メモリ | 165,200 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-19 05:43:29 |
| 合計ジャッジ時間 | 2,076 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | AC * 7 WA * 13 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
int h,w,n,k;cin>>h>>w>>n>>k;
n%=h*w;
cout<<(n==k?"YES":"NO")<<endl;
}
cureskol