結果
| 問題 |
No.530 年齢って毎年変わるし覚えるの難しいよね
|
| コンテスト | |
| ユーザー |
AREIDO2
|
| 提出日時 | 2017-07-04 00:25:04 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 107 bytes |
| コンパイル時間 | 389 ms |
| コンパイル使用メモリ | 52,492 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-05 12:55:57 |
| 合計ジャッジ時間 | 1,609 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 48 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:23: warning: ‘y’ is used uninitialized [-Wuninitialized]
6 | cout << 2017-y << "\n";
| ^~~~
ソースコード
#include<iostream>
using namespace std;
int main(){
int y;
cout << 2017-y << "\n";
return 0;
}
AREIDO2