結果

問題 No.163 cAPSlOCK
ユーザー Gedyra
提出日時 2016-05-05 01:25:01
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 57,208 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 09:09:35
合計ジャッジ時間 2,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>

using namespace std;

int main(int argc, char** argv) {
    string S;
    cin >> S;
    
    transform(S.begin(), S.end(), S.begin(), ::toupper);
    
    cout << S << endl;
    
    return 0;
}
0