結果
| 問題 | No.508 超ゆとり教育 |
| コンテスト | |
| ユーザー |
suwaharu
|
| 提出日時 | 2017-04-28 22:24:33 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 82 bytes |
| 記録 | |
| コンパイル時間 | 257 ms |
| コンパイル使用メモリ | 35,968 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-04 06:51:47 |
| 合計ジャッジ時間 | 2,191 ms |
|
ジャッジサーバーID (参考情報) |
judge5_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 1 |
| other | RE * 7 |
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:6:14: warning: 'a' is used uninitialized [-Wuninitialized]
6 | scanf("%d",a);
| ~~~~~^~~~~~~~
main.cpp:5:13: note: 'a' was declared here
5 | int a;
| ^
ソースコード
#include<stdio.h>
int main(void)
{
int a;
scanf("%d",a);
printf("%d\n",a/3);
}
suwaharu