标签:
#include<cstdio>using namespace std;int main(){int t;scanf("%d",&t);while(t--){long long n;scanf("%I64d",&n);if(n % 8 || n % 4){puts("Impossible");}else {long long a = 11*n/8,b = 7 * n / 8,c = 3 * n / 4;printf("%I64d %I64d %I64d\n",a,b,c);}}}
[2016-04-17][Gym][100947][D][The Three Kings of Asgard]
标签:
原文地址:http://www.cnblogs.com/qhy285571052/p/daf3a5d3bc42c8458bc29dc990082761.html