結果

問題 No.3195 Three-Letter Acronym
ユーザー Andrew8128
提出日時 2025-07-11 21:22:36
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 80,560 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-07-11 21:22:37
合計ジャッジ時間 1,346 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using std::cerr, std::cin, std::cout, std::endl, std::fixed, std::flush;
#include <string>
using std::stoi, std::stol, std::string, std::to_string;
static_assert(sizeof(long) == 8);
int main()
{
  string s;
  cin >> s;
  cout << (char)(s[0]-32);
  cin >> s;
  cout << (char)(s[0]-32);
  cin >> s;
  cout << (char)(s[0]-32);
  cout << '\n';
  return 0;
}
/*
  File : ~/kyopro/yukicoder/554/3195.cpp
  Date : 2025/07/11
  Time : 21:20:51
*/
0