結果
| 問題 | No.2399 This Is Truly Final Edition |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-08-06 15:32:48 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 303 bytes |
| 記録 | |
| コンパイル時間 | 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 |
ソースコード
# 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))