結果
| 問題 |
No.3195 Three-Letter Acronym
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-08-14 18:07:25 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 214 bytes |
| コンパイル時間 | 770 ms |
| コンパイル使用メモリ | 80,840 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-08-14 18:07:27 |
| 合計ジャッジ時間 | 1,965 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 23 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main() {
string s1, s2, s3;
cin >> s1 >> s2 >> s3;
cout << toupper(s1[0]) << toupper(s2[0]) << toupper(s3[0]) << endl;
return 0;
}