結果
問題 | No.166 マス埋めゲーム |
ユーザー | ottyajp |
提出日時 | 2015-05-11 11:22:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 409 bytes |
コンパイル時間 | 2,737 ms |
コンパイル使用メモリ | 62,280 KB |
実行使用メモリ | 534,640 KB |
最終ジャッジ日時 | 2024-07-05 22:54:31 |
合計ジャッジ時間 | 3,211 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | MLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <sstream> using namespace std; int main() { string in; int temp; vector<int> v; getline(cin,in); stringstream ss(in); while(!ss.eof()){ ss>>temp; v.push_back(temp); ss.ignore(); } int h,w,n,k; h = v.at(0); w = v.at(1); n = v.at(2); k = v.at(3); if((h*w - 1) % n + 1 == k){ cout<<"YES"<<endl; }else{ cout<<"NO"<<endl; } return 0; }