답안 #148179

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
148179 2019-08-31T16:43:46 Z 요까할 로뭘 은명팀 1(#3666, mario05092929) 백점을 받아랏! (FXCUP4_hundred) C++17
0 / 100
6 ms 384 KB
#include "hundred.h"
#include <bits/stdc++.h>
using namespace std;
/// �κ� ���� 1 �����ô�.

string GetHundredPoints(int A, int B, int C) {
    string ans;
    string go;
    for(int i = 0;i < 100;i++) go += 'C';
    for(int i = 0;i < 100;i++)
    {
        go[i] = 'A';
        int ch = Mark(go); // ���⼭ ��Ȯ�� A�� B�� C�� ���� �ؿ�.
        if(ch) ans += 'A';
        else ans += 'B';
        go[i] = 'C';
        //cout << ans << "\n";
    }
    return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -