結果

問題 No.267 トランプソート
ユーザー kkkk
提出日時 2015-09-20 14:27:53
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 889 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 32,400 KB
実行使用メモリ 31,612 KB
最終ジャッジ日時 2024-07-19 08:20:25
合計ジャッジ時間 1,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,444 KB
testcase_01 AC 41 ms
31,244 KB
testcase_02 AC 41 ms
30,864 KB
testcase_03 AC 38 ms
31,140 KB
testcase_04 AC 38 ms
31,120 KB
testcase_05 AC 37 ms
31,248 KB
testcase_06 AC 41 ms
31,360 KB
testcase_07 AC 39 ms
31,320 KB
testcase_08 AC 38 ms
31,064 KB
testcase_09 AC 37 ms
30,964 KB
testcase_10 AC 39 ms
31,428 KB
testcase_11 AC 37 ms
31,456 KB
testcase_12 AC 37 ms
31,612 KB
testcase_13 AC 38 ms
31,396 KB
testcase_14 AC 38 ms
31,524 KB
testcase_15 AC 40 ms
31,364 KB
testcase_16 AC 39 ms
31,244 KB
testcase_17 AC 38 ms
31,496 KB
testcase_18 AC 39 ms
31,196 KB
testcase_19 AC 41 ms
31,060 KB
testcase_20 AC 39 ms
31,140 KB
testcase_21 AC 37 ms
31,092 KB
testcase_22 AC 39 ms
31,556 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

function point($t, $n){
  //トランプの種類によるポイント振り
  
  $pt = 0;
  
  if ($t=="D"){
  	$pt = 100;
  }elseif($t=="C"){
  	$pt = 200;
  }elseif($t=="H"){
  	$pt = 300;
  }elseif($t=="S"){
  	$pt = 400;
  }
  
  if ($n=="T"){
  	$pt += 10;
  }elseif($n=="J"){
  	$pt += 11;
  }elseif($n=="Q"){
  	$pt += 12;
  }elseif($n=="K"){
  	$pt += 13;
  }elseif($n=="A"){
  	$pt += 1;
  }else{
  	$pt += $n;
  }
  
  return $pt;
}

$CNT = trim(fgets(STDIN));
$TRAMP = explode(" ", trim(fgets(STDIN)));

$tramp_arr = array();

for ($tp=0; $tp<count($TRAMP); $tp++){
  //トランプを数値化する
   $arr = str_split($TRAMP[$tp]);
   
   $pt = point($arr[0], $arr[1]);
   $tramp_arr[$TRAMP[$tp]] = $pt;
}

asort($tramp_arr);

$tramp_str = "";

foreach ($tramp_arr as $tp => $no){
	if ($tramp_str!=""){
		$tramp_str .= " ";
	}
	
	$tramp_str .= $tp;
}
echo $tramp_str;
0