結果

問題 No.3195 Three-Letter Acronym
コンテスト
ユーザー vjudge1
提出日時 2025-12-06 01:33:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 222 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 153 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 53,624 KB
最終ジャッジ日時 2025-12-06 01:33:11
合計ジャッジ時間 1,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

# t = int(input())
# n = int(input())
# a = list(map(int,input().split()))
# a,b,c = map(int,input().split())
#By Tahir Huzaifa on 05/12/2025

a,b,c = map(str,input().split())
ans = a[0] + b[0] + c[0]
print(ans.upper())


0