"SWEA 2043 서랍의 비밀번호"의 두 판 사이의 차이

잔글 (Jmnote님이 SWEA-2043 서랍의 비밀번호 문서를 SWEA 2043 서랍의 비밀번호 문서로 이동했습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;SWEA-2043 서랍의 비밀번호
;SWEA-2043 서랍의 비밀번호
{{SWEA 헤더}}
{{SWEA 난이도 1-2}}
|}


{{소스헤더|입력}}
{{소스헤더|입력}}

2018년 9월 6일 (목) 22:49 판

1 개요

SWEA-2043 서랍의 비밀번호
SW Expert 아카데미
# 문제 풀이

틀:SWEA 난이도 1-2

입력
123 100
출력
24

2 C++

#include <iostream>
 
using namespace std;
 
int main() {
    int P, K;
    cin >> P >> K;
    cout << P - K + 1;
}

3 Java

import java.util.Scanner;

class Solution {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int P = sc.nextInt();
        int K = sc.nextInt();

        System.out.print(P-K+1);
    }
}

4 같이 보기

5 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}