結果

問題 No.920 あかあお
ユーザー asdfghjkl;asdfghjkl;
提出日時 2019-11-08 23:05:31
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 405 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 27,180 KB
実行使用メモリ 10,440 KB
最終ジャッジ日時 2023-10-13 04:42:27
合計ジャッジ時間 8,024 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){
    int x,y,z;
    scanf("%d %d %d",&x,&y,&z);
    for(;x!=y;){
        if(x>y){
            y++;
            z--;
        }
        else if(y<x){
            z--;
            x++;
        }
        else if(x==y&&z>=2){
            z=z-2;
            x++;
            y++;
        }
        else if(z<=1){break;}
        
    }
    
    printf("%d\n",x);
    return 0;
}
0