結果

問題 No.1533 Don't be Negative!
ユーザー googol_S0
提出日時 2021-05-23 18:17:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 184 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-11 22:34:45
合計ジャッジ時間 3,117 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 53
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
S=sys.stdin.readlines()
assert(len(S)==1)
N,M,K=map(int,S[0].split())
assert(1<=N<=40000)
assert(1<=M<=4)
assert(0<=K<=M)
T=str(N)+' '+str(M)+' '+str(K)+'\n'
assert(T==S[0])
0