結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー Y_SY_S
提出日時 2021-01-22 21:41:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 1,000 ms
コード長 947 bytes
コンパイル時間 1,584 ms
コンパイル使用メモリ 93,808 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 13:58:43
合計ジャッジ時間 2,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 11 ms
5,376 KB
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 12 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 7 ms
5,376 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 12 ms
5,376 KB
testcase_24 AC 13 ms
5,376 KB
testcase_25 AC 13 ms
5,376 KB
testcase_26 AC 13 ms
5,376 KB
testcase_27 AC 13 ms
5,376 KB
testcase_28 AC 12 ms
5,376 KB
testcase_29 AC 13 ms
5,376 KB
testcase_30 AC 12 ms
5,376 KB
testcase_31 AC 13 ms
5,376 KB
testcase_32 AC 13 ms
5,376 KB
testcase_33 AC 13 ms
5,376 KB
testcase_34 AC 12 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:51:33: warning: 'a' may be used uninitialized [-Wmaybe-uninitialized]
   51 |         cout << k + 1 << " " << a << endl;
      |                                 ^
main.cpp:27:14: note: 'a' was declared here
   27 |         char a;
      |              ^
main.cpp:51:33: warning: 'k' may be used uninitialized [-Wmaybe-uninitialized]
   51 |         cout << k + 1 << " " << a << endl;
      |                                 ^
main.cpp:26:13: note: 'k' was declared here
   26 |         int k;
      |             ^

ソースコード

diff #

#define _USE_MATH_DEFINES

#include <iostream>	//cin, cout
#include <vector>	//vector
#include <algorithm> //sort,min,max,count
#include <string>	//string,getline, to_string
#include <ios>		//fixed
#include <iomanip>	//setprecision
#include <utility> //swap, pair
#include <cstdlib>	//abs(int)
#include <cmath>	//sqrt,ceil,M_PI, pow, sin
#include <sstream>	//stringstream,getline
#include <numeric>	//gcd, accumlate
#include <deque>	//deque
#include <random>	//randam_device
#include <limits>	//numeric_limits

using namespace std;
constexpr long long int D_MOD = 1000000007;

int main() {

	string S;
	cin >> S;

	int k;
	char a;

	char same;
	if (S[0] == S[1]) {
		same = S[0];
		for (unsigned int i = 0; i < S.length(); i++) {
			if (S[i] != same) {
				k = i;
				a = S[i];
				break;
			}
		}
	}
	else {
		if (S[0] == S[2]) {
			k = 1;
			a = S[1];
		}
		else {
			k = 0;
			a = S[0];
		}
	}

	cout << k + 1 << " " << a << endl;

	return 0;
}
0