結果
| 問題 | No.1714 Tag on Grid |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-10-22 21:24:18 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 391µs | |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 298 ms |
| コンパイル使用メモリ | 72,704 KB |
| 実行使用メモリ | 7,860 KB |
| 最終ジャッジ日時 | 2026-09-02 23:09:16 |
| 合計ジャッジ時間 | 1,862 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 |
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
4 | main()
| ^~~~
ソースコード
#include<iostream>
using namespace std;
int a,b,c,d,e,f;
main()
{
cin>>a>>b>>c>>d>>e>>f;
cout<<((c^d^e^f)%2?"Yes":"No")<<endl;
}