#38446: C


KKK471132219 (471132219)

學校 : 不指定學校
編號 : 236055
來源 : [39.15.22.139]
最後登入時間 :
2024-04-28 16:13:09
c004. 10812 - Beat the Spread! -- UVa10812 | From: [27.51.8.122] | 發表日期 : 2023-11-24 00:13

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
    int n;
    scanf("%d", &n);
    while(n--) {
        int a, b;
        scanf("%d%d", &a, &b);
       
        int c, d;
        //c = ......
       // d = ......

        if (//......) {
            printf("%d %d\n",c ,d);
        }
        else {
            printf("impossible\n");
        }
    }
    return 0;
}
 
ZeroJudge Forum