博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVa 1584 - Circular Sequence
阅读量:6508 次
发布时间:2019-06-24

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

哈哈哈哈,  又用Java强大的字符串API和集合类水过一道题,不服用C++来一遍看看比这个代码长多少(不考虑时间的情况下)。

import java.util.*;public class Main1584 {	public static void main(String[] args) {	    Scanner scan = new Scanner(System.in);	    ArrayList
arrlist = new ArrayList
(); String s; int n; n = scan.nextInt(); while(n-- > 0) { arrlist.clear(); s = scan.next(); arrlist.add(s); for(int i=1; i

 

 

转载地址:http://bdwfo.baihongyu.com/

你可能感兴趣的文章
用PHP抓取淘宝商品的用户晒单评论+图片实例
查看>>
Eclipse 创建Maven工程
查看>>
男神的补习
查看>>
Codeforces 768C:Jon Snow and his Favourite Number
查看>>
程序猿眼中的高并发
查看>>
VC++ 如何让ScrollView视图显示滚动条
查看>>
centos 6.5安装vncserver 并开启远程桌面
查看>>
准备在博客园安家,在这里分享知识
查看>>
CF1007B Pave the Parallelepiped 容斥原理
查看>>
django进阶
查看>>
0 or 1 ?
查看>>
JS中的prototype、__proto__与constructor(图解)
查看>>
iphone 6 picture recovery is a mac and windows yet still efficient
查看>>
【转】NGUI研究院之自适应屏幕(十)
查看>>
原生js获取、设置、删除属性
查看>>
linux磁盘检测和修复
查看>>
Oracle数据库的文件及表空间数据块的知识简介
查看>>
iOS 错误 之 Potential leak of an object stored into 'cs'
查看>>
iOS 界面 之 EALayout 无需反复编译,可视化实时界面,告别Storyboard AutoLayout Xib等等烦人的工具...
查看>>
Voilin 之 握弓
查看>>