結果
問題 | No.1699 Unfair RPS |
ユーザー |
|
提出日時 | 2022-04-06 10:46:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 227 bytes |
コンパイル時間 | 572 ms |
コンパイル使用メモリ | 64,668 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 17:47:42 |
合計ジャッジ時間 | 1,064 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 |
ソースコード
#include <iostream>#include <string>#include <algorithm>using namespace std;int main() {int in1, in2;cin >> in1 >> in2;if (in1 == in2) {cout << "Yes" << endl;}else {cout << "No" << endl;}return 0;}