結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー shu8Creamshu8Cream
提出日時 2021-01-22 22:34:26
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 1,000 ms
コード長 660 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 204,800 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-27 20:30:28
合計ジャッジ時間 3,849 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,384 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 6 ms
4,376 KB
testcase_14 AC 5 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 4 ms
4,380 KB
testcase_17 AC 6 ms
4,380 KB
testcase_18 AC 4 ms
4,380 KB
testcase_19 AC 6 ms
4,380 KB
testcase_20 AC 5 ms
4,376 KB
testcase_21 AC 4 ms
4,376 KB
testcase_22 AC 6 ms
4,376 KB
testcase_23 AC 7 ms
4,380 KB
testcase_24 AC 7 ms
4,376 KB
testcase_25 AC 6 ms
4,376 KB
testcase_26 AC 7 ms
4,376 KB
testcase_27 AC 7 ms
4,380 KB
testcase_28 AC 7 ms
4,380 KB
testcase_29 AC 6 ms
4,376 KB
testcase_30 AC 6 ms
4,376 KB
testcase_31 AC 7 ms
4,380 KB
testcase_32 AC 6 ms
4,376 KB
testcase_33 AC 7 ms
4,380 KB
testcase_34 AC 6 ms
4,376 KB
testcase_35 AC 1 ms
4,376 KB
testcase_36 AC 1 ms
4,376 KB
testcase_37 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘int main()’ 内:
main.cpp:32:27: 警告: ‘tmp’ may be used uninitialized [-Wmaybe-uninitialized]
   32 |     cout << ans << " " << tmp << endl;
      |                           ^~~
main.cpp:21:10: 備考: ‘tmp’ はここで定義されています
   21 |     char tmp, c;
      |          ^~~

ソースコード

diff #

/**
*    author:  shu8Cream
*    created: 22.01.2021 22:20:38
**/

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i=0; i<(n); i++)
#define all(x) (x).begin(), (x).end()
using ll = long long;
using P = pair<int,int>;
using vi = vector<int>;
using vvi = vector<vi>;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    string s;
    cin >> s;
    set<char> se;
    char tmp, c;
    rep(i,s.size()){
        if(se.count(s[i])) tmp = s[i];
        se.insert(s[i]);
    }
    int ans = 0;
    rep(i,s.size()) if(s[i]!=tmp){
        ans=i+1;
        tmp=s[i];
        break;
    }
    cout << ans << " " << tmp << endl;
}
0