結果

問題 No.809 かけ算
ユーザー ysystem7
提出日時 2020-10-17 14:02:20
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 65,724 KB
最終ジャッジ日時 2025-01-15 10:47:22
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

int main(){
    int n;
    cin>>n;
    cout<<1<<' '<<n<<endl;
}
0