結果

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

ソースコード

diff #

#define _DEBUG 0
#include<stdio.h>
#include<stdbool.h>
#include<string.h>
#include<ctype.h>
int main(void)
{
  int scan;//scanf警告用
  char s[11];
  scan=scanf("%s",s);printf("%c",toupper(s[0]));
  scan=scanf("%s",s);printf("%c",toupper(s[0]));
  scan=scanf("%s",s);printf("%c",toupper(s[0]));
  return 0;
}
0