結果
問題 |
No.99 ジャンピング駒
|
ユーザー |
![]() |
提出日時 | 2019-10-04 23:37:25 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 215 bytes |
コンパイル時間 | 1,367 ms |
コンパイル使用メモリ | 166,912 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-03 09:48:52 |
合計ジャッジ時間 | 2,507 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 2 WA * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef unsigned long long ull; typedef long long ll; int main(){ int n; cin >> n; ll x[n]; for(int i=0; i<n; i++) cin >> x[i]; cout << n%2 << endl; return 0; }