結果
| 問題 | No.508 超ゆとり教育 |
| コンテスト | |
| ユーザー |
suwaharu
|
| 提出日時 | 2017-04-28 22:32:54 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 282 ms |
| コンパイル使用メモリ | 47,872 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-04 06:53:26 |
| 合計ジャッジ時間 | 1,397 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 7 |
ソースコード
#include<stdio.h>
#include<math.h>
int main(void)
{
long int a;
scanf("%d",&a);
if(a/3!=0)
printf("%d\n",(int)sqrt(a/3));
else printf("1\n");
}
suwaharu