【言語別】複数行の標準入力→int型配列 の高速化(Tips) 最近paizaとかcodeiqがマイブームなのですが、POH1でI/Oで色々つまづいたので、言語別にそこそこ高速だと思われるプログラムを載せてみます。 標準入力1000000行の配列化&数値変換です。 (他のプログラムとの比較とかはないです。ごめんなさい。) 変数名とか色々まとまってません! C,C++ #include <cstdio> #include <vector> #include <string> #include <iostream> static const int N = 1000000; static char _buf[10*N]; int read_int(){ static uint64_t c=0; int r=0; while( _buf[c] >= '0' && _buf[c] <= '9' )