2016年7月15日
摘要: 在win32的评测系统下,long long scanf 要用"%I64d" ,而网上评测和考试要用"%lld",因此,难免有点麻烦,还会runtime error,所以这里提出一种新的方法: #ifdef WIN32 #define AUTO "%I64d" #else #define AUTO 阅读全文
posted @ 2016-07-15 07:49 qzgxlx 阅读(689) 评论(0) 推荐(0) 编辑