結果

問題 No.2399 This Is Truly Final Edition
コンテスト
ユーザー aogera
提出日時 2024-03-26 23:04:37
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 286 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 151 ms
コンパイル使用メモリ 85,248 KB
実行使用メモリ 51,840 KB
最終ジャッジ日時 2026-04-16 17:33:52
合計ジャッジ時間 1,117 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

def I(): return input()
def N(): return int(input())
def M(): return map(int,input().split())
def L(): return list(map(int,input().split()))

#-----------------------------------------

s = I()
t = I()
N = N()
print(s,end = "")
for i in range(N):
  print("_",end="")
  print(t,end="")

0