2 条题解

  • 0
    @ 2025-11-24 15:34:22

    x86-64 Linux

    int main() {
        __asm__ volatile (
            "syscall"
            :
            : "a" (1),
              "D" (1),
              "S" ("Ciallo World!\n"),
              "d" (14)
            : "rcx", "r11", "memory"
        );
        
        __asm__ volatile (
            "syscall"
            :
            : "a" (60),
              "D" (0)
            : "rcx", "r11", "memory"
        );
    }
    
    • 0
      @ 2025-9-7 14:20:41
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          cout<<"Ciallo World!";
          return 0;
      }
      
      • 1

      信息

      ID
      146
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      (无)
      递交数
      195
      已通过
      76
      上传者