博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NYOJ之素数求和问题
阅读量:5050 次
发布时间:2019-06-12

本文共 789 字,大约阅读时间需要 2 分钟。

----------------------------------------------

这道题有坑,虽然明确说<1000,但是实际上是<=1000。

AC代码:

1 import java.util.Scanner; 2  3 public class Main { 4  5     public static void main(String[] args) { 6          7         preprocess(); 8          9         Scanner sc=new Scanner(System.in);10         11         int times=sc.nextInt();12         while(times-->0){13             int n=sc.nextInt();14             int ans=0;15             while(n-->0){16                 int t=sc.nextInt();17                 if(prime[t]) ans+=t;18             }19             System.out.println(ans);20         }21     }22     23     private static boolean prime[]=new boolean[1001];24     25     public static void preprocess(){26         for(int i=2;i

 

题目来源:

素数求和问题

转载于:https://www.cnblogs.com/cc11001100/p/5791703.html

你可能感兴趣的文章
动态链接的步骤
查看>>
emacs 缩写词功能
查看>>
Api demo源码学习(2)--App/Activity/Custom Dialog --自定义Activity样式
查看>>
Velocity脚本简明教程
查看>>
虚拟机类加载机制
查看>>
RTSP流媒体数据传输的两种方式(TCP和UDP)
查看>>
大数n!
查看>>
LPC-LINK 2 LPC4370 简化线路图
查看>>
【模板】关于vector的lower_bound和upper_bound以及vector基本用法 STL
查看>>
linux c动态库编译好了,不能用。有些方法报(undefined reference)错误。
查看>>
在CentOS 6.5 中安装JDK 1.7 + Eclipse并配置opencv的java开发环境(二)
查看>>
docker 安装与卸载
查看>>
“搜狐微博零估值”用意何在
查看>>
如何区分 OpenStack Neutron Extension 和 Plugin
查看>>
简述人工智能发展的先决条件
查看>>
AWS API 2.0签名规范
查看>>
MVC3 系统列讲解
查看>>
很开心
查看>>
Codeforces 388 D. Fox and Perfect Sets
查看>>
货币计算程序
查看>>