結果
| 問題 |
No.410 出会い
|
| コンテスト | |
| ユーザー |
Ytz_Ichi
|
| 提出日時 | 2018-07-16 04:50:59 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 143 bytes |
| コンパイル時間 | 152 ms |
| コンパイル使用メモリ | 28,032 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-08 09:19:08 |
| 合計ジャッジ時間 | 1,007 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 1 WA * 18 |
ソースコード
#include <stdio.h>
int main(){
int p1,p2,q1,q2;
scanf("%d %d\n%d %d\n",&p1,&p2,&q1,&q2);
printf("%f\n",(p1+p2+q1+q2)/2.0);
return 0;
}
Ytz_Ichi