結果
問題 | No.570 3人兄弟(その1) |
ユーザー | RadPeria |
提出日時 | 2017-12-02 23:22:53 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 274 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 28,288 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-06 01:54:53 |
合計ジャッジ時間 | 605 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
コンパイルメッセージ
main.c:3:1: warning: return type defaults to 'int' [-Wimplicit-int] 3 | main(){ | ^~~~
ソースコード
#include <stdio.h> main(){ int a,b,c; scanf("%d%d%d\n", &a, &b, &c); int i; for(i=200;i>=150;i--){ if(i==a||i==b||i==c){ printf("%d\n", i); } } return 0; }