結果

問題 No.201 yukicoderじゃんけん
ユーザー mkanenobumkanenobu
提出日時 2018-04-04 22:45:51
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 2,929 ms
コンパイル使用メモリ 65,348 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 05:45:11
合計ジャッジ時間 3,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 WA -
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(2, 8) Warning: imported and not used: 'parseutils' [UnusedImport]
/home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'sequtils' [UnusedImport]
/home/judge/data/code/Main.nim(1, 28) Warning: imported and not used: 'algorithm' [UnusedImport]
/home/judge/data/code/Main.nim(1, 39) Warning: imported and not used: 'math' [UnusedImport]

ソースコード

diff #

import strutils, sequtils, algorithm, math
import parseutils

var
  aIn = readLine(stdin).split
  bIn = readLine(stdin).split
  a:tuple[name:string, point:string]
  b:tuple[name:string, point:string]

a =  (aIn[0], aIn[1])
b =  (bIn[0], bIn[1])

if a.point == b.point:
  echo -1
elif max(len(a.point), len(b.point)) == len(a.point):
  echo a.name
else:
  echo b.name
0