結果

問題 No.942 プレゼント配り
ユーザー risujiroh
提出日時 2019-12-05 00:15:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 264 bytes
コンパイル時間 1,748 ms
コンパイル使用メモリ 166,332 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-14 16:28:15
合計ジャッジ時間 5,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 RE * 1
other AC * 6 RE * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int n, k;
  cin >> n >> k;
  if (k & 1) {
    assert(false);
  } else {
    if (n % (2 * k) == 0) {
      assert(false);
    }
  }
  cout << "No\n";
}
0