結果

問題 No.1699 Unfair RPS
ユーザー miraissan
提出日時 2023-11-30 14:30:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 1,411 ms
コンパイル使用メモリ 165,240 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-26 14:03:16
合計ジャッジ時間 2,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 3 WA * 6
権限があれば一括ダウンロードができます
コンパイルメッセージ
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