結果
問題 |
No.2399 This Is Truly Final Edition
|
ユーザー |
|
提出日時 | 2023-12-16 19:28:29 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 184 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-27 07:47:48 |
合計ジャッジ時間 | 800 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 |
ソースコード
#include<stdio.h> #include<string.h> int main(void){ char s[11],t[11]; int n; scanf("%s%s%d",s,t,&n); printf("%s",s); for(int i=1;i<=n;i++){ printf("_"); printf("%s",t); } }