結果

問題 No.809 かけ算
ユーザー Artemis2718Artemis2718
提出日時 2019-04-20 14:42:22
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 25,344 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-01 08:21:47
合計ジャッジ時間 749 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void)
{
    int c;
    scanf("%d",&c);
    printf("%d %d",1,c);
    return 0;
}
0