結果
問題 | No.1636 森 |
ユーザー |
|
提出日時 | 2022-02-15 19:01:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 90 bytes |
コンパイル時間 | 1,985 ms |
コンパイル使用メモリ | 163,948 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 07:07:48 |
合計ジャッジ時間 | 2,234 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | WA * 20 |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:5:4: warning: 'N' is used uninitialized [-Wuninitialized] 5 | N--; | ~^~ main.cpp:4:7: note: 'N' was declared here 4 | int N; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; N--; cout<<N*N; }