結果

問題 No.8119 間に合いませんでした><;
ユーザー GOTKAKO
提出日時 2025-04-01 22:59:07
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 194,308 KB
実行使用メモリ 11,172 KB
最終ジャッジ日時 2025-04-01 22:59:12
合計ジャッジ時間 4,074 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 22 TLE * 1 -- * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    int N; cin >> N;
    string s; cin >> s;
    cout << s << endl;
    cout << s << endl;
    cout << s << endl;
    cout << s << endl;
    cout << s << endl;
    for(int i=0; i<N; i++) for(auto &c : s) c ^= 'o'^'x';
}
0