結果

問題 No.2399 This Is Truly Final Edition
コンテスト
ユーザー Rushikesh Kurhade
提出日時 2023-08-06 15:32:48
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 303 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 55 ms
コンパイル使用メモリ 15,104 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2026-09-19 19:31:54
合計ジャッジ時間 1,309 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge5_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

# string of alphabets S , T and positive integers N. is given for S , at the end _and T is The operation to add N times. Print the string that has been done


s = input()
t = input()
n = int(input())

ans = []
while n >0:
	g = '_'
	ans.append(s)
	ans.append(g)
	ans.append(t)
	n-=1
	
print(''.join(ans))
0