比较基础的线段树,1A。 线段树: 1 #include <iostream>2 #include <cstring>3 #include <cstdio>4 using namespace std;5 6 typedef long long ll;7 const int N 50001;8 const int MOD 1000000007;9 int a[N];10 11 struct Node12…
Log Logs,生成一个日志对象。 package com.huey.lombok;import lombok.extern.java.Log;Log
public class LogExample {public static void main(String[] args) {log.info("This is an info message."); }} 除了,Log还有其他annotatio…
基本UDP客户端 #!/usr/bin/env python # UDP Example - Chapter 2 import socket, sys, time host sys.argv[1] textport sys.argv[2] s socket.socket(socket.AF_INET, socket.SOCK_DGRAM) try: port int(textport) except ValueError: # That didnt work. Look it up in…