結果

問題 No.1699 Unfair RPS
ユーザー miraissanmiraissan
提出日時 2023-11-30 14:30:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 1,597 ms
コンパイル使用メモリ 165,476 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2023-11-30 14:30:58
合計ジャッジ時間 2,619 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
6,676 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
6,676 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:6:10: warning: 'b' is used uninitialized [-Wuninitialized]
    6 |          if(b==c){
      |          ^~
main.cpp:5:13: note: 'b' was declared here
    5 |         int b,c;
      |             ^
main.cpp:6:10: warning: 'c' is used uninitialized [-Wuninitialized]
    6 |          if(b==c){
      |          ^~
main.cpp:5:15: note: 'c' was declared here
    5 |         int b,c;
      |               ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
	int b,c;
	 if(b==c){
	 	cout << "Yes" << endl;
	 }else{
	 	cout << "No" << endl;
	 }
}
0