よじろめ覚書

私の理解度重視のソースコードです。

2019-08-14から1日間の記事一覧

ABC054A - One Card Poker

ABC

問題:B - Template Matching #include <iostream> #include <string> using namespace std; int main(void) { const string ret[3] = {"Alice", "Bob", "Draw"}; int a, b, pos; cin.tie(0); ios::sync_with_stdio(false); cin >> a >> b; a = (a == 1)? a + 13 : a; b = (b =</string></iostream>…