結果
問題 |
No.3195 Three-Letter Acronym
|
ユーザー |
|
提出日時 | 2025-07-15 02:36:36 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 1,042 ms |
コンパイル使用メモリ | 80,456 KB |
実行使用メモリ | 7,840 KB |
最終ジャッジ日時 | 2025-07-15 10:15:45 |
合計ジャッジ時間 | 2,263 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 23 |
ソースコード
#include <iostream> #include <string> #include <cctype> 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; }