TopCoder
の編集
Top
/
TopCoder
[
トップ
] [
編集
|
凍結
|
差分
|
添付
|
リロード
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
Active
Rubyチートシート
成果物リスト
勉強会ログ
↑
アイデア
Webサービス案
Androidアプリ案
電子工作案
GreaseMonkey案
contribute
編集
↑
Recent
2024-07-04
HDDリスト
2023-11-12
自動車保険
2023-08-03
docker
2023-05-17
Rubyチートシート
2023-03-30
RAID5/トラブル20230324
2023-03-25
PC/misuzu
2023-03-24
PC
2023-03-23
PC/DESKTOP-7SL5J8R
2022-12-16
Linux
2022-11-09
Linux/ディスクイメージ取得
2021-05-23
CTF
2021-03-17
PC/misumi
2020-08-31
COMP
2020-03-28
PC/misumi/ubuntu
Windows 10
2018-06-04
Microsoft decode 2018 2日目
Microsoft decode 2018 1日目
2018-04-07
カメラ
2018-01-06
電力自由化
2017-12-21
CROSS×BEATS
B
I
U
D
H
[[]]
<br>
--
*テンプレ ---( #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std; #define FOR(i, e) for(int i = 0; i < (e); i++) #define FORS(i, s, e) for(int i = (s); i < (e); i++) #define ALL(c) c.begin(), c.end() typedef long long ll; typedef vector
vi; typedef vector
vd; typedef vector
vs; int ri(){ int value; scanf("%d", &value); return value; } ll rl(){ ll value; scanf("%lld", &value); return value; } double rd(){ double value; scanf("%lf", &value); return value; } string rs(){ char buf[10000]; scanf("%s", buf); return buf; } template
void sort(T& c){ sort(c.begin(), c.end()); } template
void rsort(T& c){ sort(c.begin(), c.end()); reverse(c.begin(), c.end()); } #ifdef LOCAL #define ppd(...) printf(__VA_ARGS__) #else #define ppd(...) #endif class $CLASSNAME$ { public: $RC$ $METHODNAME$($METHODPARMS$) { $RC$ result; return result; } $TESTCODE$ }; // BEGIN CUT HERE int main() { $CLASSNAME$ ___test; ___test.run_test(-1); } // END CUT HERE ---)
タイムスタンプを更新
テキスト整形のルールを表示する
Last-modified: 2014-12-24(水) 16:49:53