結果
| 問題 | 
                            No.2827 Enter User Name to Play
                             | 
                    
| コンテスト | |
| ユーザー | 
                             vjudge1
                         | 
                    
| 提出日時 | 2025-04-17 18:15:18 | 
| 言語 | C++23  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 455 bytes | 
| コンパイル時間 | 863 ms | 
| コンパイル使用メモリ | 78,712 KB | 
| 実行使用メモリ | 7,844 KB | 
| 最終ジャッジ日時 | 2025-04-17 18:15:20 | 
| 合計ジャッジ時間 | 1,914 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | WA * 22 | 
ソースコード
#include<iostream>
using namespace std;
int main () {
    int size = 16;
    string givenName;
    cin>> givenName;
    char array[16];
    int arr[16];
    int i=0;
    char choice ;
    do {
        cin>>choice;
        cin>>arr[i++];
    }
    while(choice != 'n' && i<=15);
    for (int i=0;i < 16; i++) {
        array[i] = arr[i];
    }
    for (int i=0;i < 16; i++) {
        cout << "disguised name" << array[i] ;
    }
    
    return 0;
}
            
            
            
        
            
vjudge1