結果
問題 | No.99 ジャンピング駒 |
ユーザー | sayu |
提出日時 | 2014-12-09 23:55:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 479 bytes |
コンパイル時間 | 704 ms |
コンパイル使用メモリ | 80,720 KB |
実行使用メモリ | 5,420 KB |
最終ジャッジ日時 | 2024-06-11 19:07:30 |
合計ジャッジ時間 | 1,310 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
5,292 KB |
testcase_01 | AC | 24 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#include <algorithm> #include <cmath> #include <complex> #include <cstdio> #include <cstdlib> #include <cstring> #include <iostream> #include <map> #include <queue> #include <set> #include <string> #include <vector> using namespace std; typedef pair<int, int> pii; typedef vector<int> vi; #define rep(i,x) for(int i=0;i<(int)(x);++i) int main(){ int n; string s; cin >> n; cin.ignore(); getline(cin, s); cout << (n%2 ? 1 : 0) << endl; return 0; }