結果
| 問題 | No.3195 Three-Letter Acronym |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2025-12-06 01:31:50 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 274 bytes |
| 記録 | |
| コンパイル時間 | 258 ms |
| コンパイル使用メモリ | 82,836 KB |
| 実行使用メモリ | 67,268 KB |
| 最終ジャッジ日時 | 2025-12-06 01:31:54 |
| 合計ジャッジ時間 | 2,729 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 23 |
ソースコード
# 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
t = int(input())
for _ in range(t):
a,b,c = map(str,input().split())
ans = a[0] + b[0] + c[0]
print(ans.capitalize())
vjudge1