結果
| 問題 | No.3107 45^2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-20 16:04:23 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 200 bytes |
| 記録 | |
| コンパイル時間 | 75 ms |
| コンパイル使用メモリ | 35,584 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-10 02:30:30 |
| 合計ジャッジ時間 | 1,296 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 12 |
ソースコード
#include<stdio.h>
int main()
{
int n, ans;
printf("nの二乗を計算します。1から45の整数を入力してください。");
scanf("%d",&n);
ans = n*n;
printf("ans=%d",ans);
return 0;
}