2 条题解

  • 0
    @ 2023-12-9 10:57:47

    Java :

    import java.math.BigInteger;
    
    public class Main {
        public static void main(String[] args) {
            BigInteger n = new BigInteger("20");
            for (int i = 1; i < 22; i++) {
                n = n.multiply(BigInteger.valueOf(20L));
            }
            System.out.println(n.divide(BigInteger.valueOf(7L)));
            System.out.println("3");
        }
    }
    

    信息

    ID
    572
    时间
    1000ms
    内存
    128MiB
    难度
    4
    标签
    (无)
    递交数
    203
    已通过
    23
    上传者