提出 #9977323


ソースコード 拡げる

#include <bits/stdc++.h>
#define INF 1e9
using namespace std;

#define REPR(i,n) for(int i=(n); i >= 0; --i)
#define FOR(i, m, n) for(int i = (m); i < (n); ++i)
#define REP(i, n) for(int i=0, i##_len=(n); i<i##_len; ++i)
#define ALL(a)  (a).begin(),(a).end()

template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
int gcd(int a,int b){return b?gcd(b,a%b):a;}
typedef long long ll;
ll gcd(ll a,ll b){return b?gcd(b,a%b):a;}


int main() {
    string S;
    cin >> S;
    REP(i,S.size()) cout << "x";
    cout << endl;

    return 0;
}

提出情報

提出日時
問題 B - I miss you...
ユーザ reud
言語 C++14 (GCC 5.4.1)
得点 200
コード長 694 Byte
結果 AC
実行時間 1 ms
メモリ 256 KiB

ジャッジ結果

セット名 Sample Subtask1
得点 / 配点 0 / 0 200 / 200
結果
AC × 3
AC × 17
セット名 テストケース
Sample sample_01.txt, sample_02.txt, sample_03.txt
Subtask1 fault_01.txt, fault_02.txt, fault_03.txt, fault_04.txt, fault_05.txt, fault_06.txt, fault_07.txt, fault_08.txt, fault_09.txt, fault_10.txt, fault_11.txt, fault_12.txt, fault_13.txt, fault_14.txt, sample_01.txt, sample_02.txt, sample_03.txt
ケース名 結果 実行時間 メモリ
fault_01.txt AC 1 ms 256 KiB
fault_02.txt AC 1 ms 256 KiB
fault_03.txt AC 1 ms 256 KiB
fault_04.txt AC 1 ms 256 KiB
fault_05.txt AC 1 ms 256 KiB
fault_06.txt AC 1 ms 256 KiB
fault_07.txt AC 1 ms 256 KiB
fault_08.txt AC 1 ms 256 KiB
fault_09.txt AC 1 ms 256 KiB
fault_10.txt AC 1 ms 256 KiB
fault_11.txt AC 1 ms 256 KiB
fault_12.txt AC 1 ms 256 KiB
fault_13.txt AC 1 ms 256 KiB
fault_14.txt AC 1 ms 256 KiB
sample_01.txt AC 1 ms 256 KiB
sample_02.txt AC 1 ms 256 KiB
sample_03.txt AC 1 ms 256 KiB