結果

問題 No.3195 Three-Letter Acronym
ユーザー 👑 Kazun
提出日時 2025-07-11 22:20:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,044 KB
最終ジャッジ日時 2025-07-11 22:20:54
合計ジャッジ時間 2,389 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    A, B, C = input().split()
    return "".join([A[0].upper(), B[0].upper(), C[0].upper()])

#==================================================
print(solve())
0