This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(1*(2/(3/((4-(5-(6*(7*8))))*9)))) | |
(1*(2/(3/((4-(5-((6*7)*8)))*9)))) | |
(1+(2+(3*((4*((5+6)*(7+8)))+9)))) | |
(1*(2*(3*((4*((5*6)+(7*8)))-9)))) | |
(1*(2/(3/(((4+5)*(6*(7*8)))-9)))) | |
(1*(2/(3/(((4+5)*((6*7)*8))-9)))) | |
(1*(2/(3/(((4-5)+(6*(7*8)))*9)))) | |
(1*(2/(3/(((4-5)+((6*7)*8))*9)))) | |
(1+(2+(3*(((4*(5+6))*(7+8))+9)))) | |
(1*(2/(3/((((4+5)*6)*(7*8))-9)))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Device 0: "GeForce 9600 GT" | |
CUDA Driver Version: 3.0 | |
CUDA Runtime Version: 3.0 | |
CUDA Capability Major revision number: 1 | |
CUDA Capability Minor revision number: 1 | |
Total amount of global memory: 536870912 bytes | |
Number of multiprocessors: 8 | |
Number of cores: 64 | |
Total amount of constant memory: 65536 bytes | |
Total amount of shared memory per block: 16384 bytes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
const int digits[] = {1,2,3,4,5,6,7,8,9}; | |
#define SIZE 9 | |
#define DP_MAX 5 | |
#define CSIZE 10 | |
struct expr { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.*; | |
import java.awt.geom.*; | |
import java.awt.event.*; | |
import java.awt.image.*; | |
import java.io.*; | |
import java.util.*; | |
import javax.swing.*; | |
import javax.swing.event.*; | |
import java.lang.reflect.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/make -f | |
# Makefile for checkinstall FSharp | |
# fsharp.zip | |
# -> http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/release.aspx | |
.PHONY: all clean | |
all: doc-pak description-pak | |
sn -q -R bin/FSharp.Core.dll /usr/share/cli-common/keys/mono.snk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define IDENT(x) x | |
#define NOT0 1 | |
#define NOT1 0 | |
#define NOT_(x) NOT##x | |
#define NOT(x) NOT_(x) | |
#define AND00 0 | |
#define AND01 0 | |
#define AND10 0 | |
#define AND11 1 | |
#define AND_(x,y) AND##x##y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
TASKNO: 1 | |
LANG: C++ | |
NAME: Masaki Hara j090577gw | |
*/ | |
/* timestamp: 10:29 */ | |
#include <cstdio> | |
#include <vector> | |
#include <algorithm> | |
using namespace std; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <vector> | |
#include <cstdlib> | |
#include <cstdio> | |
#include <cmath> | |
#include <algorithm> | |
using namespace std; | |
typedef long long Int; | |
Int gcd(Int a, Int b) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <sys/time.h> | |
#include <unistd.h> | |
#include <stdarg.h> | |
using namespace std; | |
struct __bench__ { | |
double start; | |
char msg[100]; | |
__bench__(const char* format, ...) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
public class Score { | |
public static void main(String[] 引数) throws IOException { | |
BufferedReader 入力 = new BufferedReader(new FileReader("score.in")); | |
int 人数 = Integer.parseInt(入力.readLine()); | |
int[] 得点 = new int[人数]; | |
int[] 分布 = new int[101]; | |
for(int 愛 = 0; 愛 < 人数; 愛++) { | |
得点[愛] = Integer.parseInt(入力.readLine()); |