結果

問題 No.249 N言っちゃダメゲーム (2)
ユーザー mmmumummmummmumummmu
提出日時 2015-07-24 23:20:47
言語 Python2
(2.7.18)
結果
AC  
実行時間 574 ms / 1,000 ms
コード長 108 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-07-08 13:46:01
合計ジャッジ時間 2,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 556 ms
8,320 KB
testcase_01 AC 574 ms
8,192 KB
testcase_02 AC 12 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = [0]*1000
K = [0]*1000

for i in range(0, 1000):
	N[i], K[i] = map(long,raw_input().split())

print "500"
0