#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

int main() {

	#ifndef ONLINE_JUDGE
    freopen("input.txt", "rt", stdin);
	#endif
    
	char* s;
    int n;
    
	scanf("%s %d", s, &n);
    
    return 0;
}
import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {
//        BufferedReader br = new BufferedReader(new InputStreamReader(
//                System.in
//        ));
        BufferedReader br = new BufferedReader(new InputStreamReader(
                new FileInputStream("./data/input.txt")
        ));
        StringTokenizer st = new StringTokenizer(br.readLine());


    }
}

'Java' 카테고리의 다른 글

객체 배열 정렬  (0) 2021.08.03

pkg 설치

pip install virtualenv

 

터미널에서

가상환경 생성

virtualenv (가상환경이름) # 윈도우환경에서, 혹은 ubuntu환경에서 python2

virtualenv -p python3 (가상환경이름) # ubuntu환경에서 python3

 

실행

# windows cmd
call 가상환경이름/scripts/activate

# ubuntu
source /home/hyungcheol/env_name/bin/activate # 경로..

 

종료

deactivate

 

make bat, sh 파일

call 가상환경이름/scritps/activate
cmd /k

+ Recent posts