ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#8 | #4. 「WyOJ Round 1」启 · 破茧初阳 | __vector__ | Compile Error | / | / | C++23 | 509b | 2025-03-31 08:17:45 | 2025-03-31 08:17:46 |
answer
详细
answer.code:3:14: error: expected unqualified-id before ‘__int128’ 3 | #define i128 __int128 | ^~~~~~~~ answer.code:6:1: note: in expansion of macro ‘i128’ 6 | i128 gcd(i128 a,i128 b) {return b?gcd(b,a%b):a;} | ^~~~ answer.code:3:14: error: expected unqualified-id before ‘__int128’ 3 | #define i128 __int128 | ^~~~~~~~ answer.code:7:1: note: in expansion of macro ‘i128’ 7 | i128 read() {ll x; cin>>x; return x;} | ^~~~ answer.code:3...