結果
| 問題 | No.890 移調の限られた旋法 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-09-20 21:45:18 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 281 bytes |
| 記録 | |
| コンパイル時間 | 979 ms |
| コンパイル使用メモリ | 178,536 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-27 07:23:45 |
| 合計ジャッジ時間 | 4,127 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 2 |
| other | AC * 10 WA * 5 RE * 17 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
ll n, K;
cin >> n >> K;
assert(n % 2 == 1 || K % 2 == 1);
if (n == K) cout << 1 << endl;
else cout << 0 << endl;
return 0;
}