- 今週は問題を解かなかった。参加したコンテストなし
- スポーツジムの体験予約。来週金曜日
- 集合・位相入門、1章$3までやる。
覚えてない
package atcoder.other2016.codefestival2016.qualb; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.PrintWriter; | |
import java.util.*; | |
public class E { | |
public static void main(String[] args) { | |
InputReader in = new InputReader(System.in); |
import java.util.Arrays; | |
public class CrazyFunctions { | |
public int count(int n, int k) { | |
// nCkを使えるようにする | |
prec(100000); | |
// 前半パート。閉路に使うk頂点のパターン数に、閉路の作り方を掛け算。 | |
long answer = 1; | |
for (int i = 2 ; i <= k ; i++) { |
覚えてない
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.PrintWriter; | |
import java.util.Arrays; | |
import java.util.InputMismatchException; | |
public class F { | |
public static void main(String[] args) { | |
InputReader in = new InputReader(System.in); | |
PrintWriter out = new PrintWriter(System.out); |
#include <bits/stdc++.h> | |
using namespace std; | |
#define ALL(x) x.begin(),x.end() | |
#define DBG(x) cout << #x << " = " << x << endl | |
typedef long long ll; | |
const ll MOD = 1000000007; | |
const int MAXN = 310; | |
int n; |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.Collections; | |
import java.util.List; | |
public class Moneymanager { | |
public int getbest(int[] a, int[] b, int X) { | |
List<int[]> w = new ArrayList<>(); | |
int n = a.length; | |
for (int i = 0; i < n ; i++) { |
package atcoder.arc.arc068; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.PrintWriter; | |
import java.util.Arrays; | |
import java.util.InputMismatchException; | |
public class Main { | |
private static final int MOD = 1000000007; |
FROM ruby:2.3.3 | |
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs --no-install-recommends && rm -rf /var/lib/apt/lists/* | |
ENV INSTALL_PATH /app | |
ENV LANG C.UTF-8 | |
RUN mkdir $INSTALL_PATH | |
WORKDIR $INSTALL_PATH | |
COPY Gemfile ./ | |
COPY Gemfile.lock ./ | |
RUN bundle install |