結果

問題 No.3107 45^2
ユーザー Naru820
提出日時 2025-03-24 22:03:57
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 103 bytes
コンパイル時間 3,789 ms
コンパイル使用メモリ 271,460 KB
実行使用メモリ 7,328 KB
最終ジャッジ日時 2025-03-24 22:04:02
合計ジャッジ時間 4,899 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int8_t n;
int main(){
    cin >> n;
    cout << n * n;
}
0