提交时间:2022-07-13 11:54:36

运行 ID: 51589

#include <bits/stdc++.h> using namespace std; int x, a, b, c; int main() { srand(time(0)*88); scanf("%d", &x); while(x--) cin >> a >> b >> c; cin >> x; while(x--) cout << rand()%10 << '\n'; return 0; }