| Show all threads Hide all threads Show all messages Hide all messages |
| WA#4 | Andy_spb | 1084. Goat in the Garden | 7 Nov 2010 00:23 | 2 |
WA#4 Andy_spb 7 Nov 2010 00:21 Edited by author 07.11.2010 00:25 |
| Milanin (TNU) have solved ALL problems in Timus Online Judge! Congratulations! (-) | Sandro (USU) | | 6 Nov 2010 22:21 | 3 |
|
| why the percentage is'nt exceed 100%? | hoan | 1138. Integer Percentage | 6 Nov 2010 22:04 | 1 |
I assume the percentage is'nt exceed 100% and i got AC, this is a rule of problem or in any way we can prove this??? sorry for my poor english. |
| Test 72 | Галимзянов Дмитрий | 1809. Chapaev and Potatoes | 6 Nov 2010 21:31 | 1 |
Test 72 Галимзянов Дмитрий 6 Nov 2010 21:31 I have WA at test #72. Could I get content of this test? Pls :) Edited by author 07.11.2010 22:46 |
| please eplaine me this problem.How much stones we can take in each turn? | FromUSA | 1180. Stone Game | 6 Nov 2010 19:44 | 2 |
in each turn you must take x stones which x is a member of S= {1, 2^1, 2^2, ...} sorry for my poor english. |
| To admins: in standard notation 8 is forward, 1 is backward | ASK | 1016. Cube on the Walk | 6 Nov 2010 16:41 | 3 |
Chess notation in this problem is standard chess notation. But the statement can be unclear because "forward side" of cube here means "nearest" to us (to 1st row). I've changed "forward side" to "near side" and "backward side" to "far side". Does it make the statement better? Maybe it is even better to describe "near side" as the one facing the first row, but the new version is also good enough. |
| No subject | Milanin (TNU) | | 6 Nov 2010 15:40 | 1 |
|
| To admins (add a test please) | rikudo | 1005. Stone Pile | 5 Nov 2010 20:31 | 1 |
Please, add new tests to problem 1005. for input 4 10 11 13 15 submit number 3269083 returns 1 and submit number 3270969 returns 3 and both of them have been accepted. Thx. |
| Is AB=BA??? | Mihail Kovachev | 1155. Troubleduons | 5 Nov 2010 18:34 | 2 |
|
| RB tree | muhammad | 1028. Stars | 5 Nov 2010 12:44 | 2 |
AC with RB tree(.046 sec 125kb). possible to solve with TREAP:BST too. Please somebody explain me the BIT method. For the BIT method you just have to think about the right order to add the stars. |
| Finally Accept!!!!!! | Enigma | 1295. Crazy Notions | 5 Nov 2010 11:49 | 1 |
|
| Tests 48+ | Alexander Mangilyov (TNU) | 1394. Ships. Version 2 | 5 Nov 2010 02:00 | 1 |
Tests 48+ Alexander Mangilyov (TNU) 5 Nov 2010 02:00 I have already solved this problem, but I am very interesting in tests 48+. I want to no how does it looks like and to measure run time of different algorithms on this tests. If it is possible please send it on vitar_laeda(a)mail.ru Or only test 48 if other is impossible. |
| Will the answer AC?? | 72VanVector[SevNTU] | 1803. The Czechs' Rifles | 5 Nov 2010 01:58 | 4 |
In test case 10 8 we have answer 1 2 3 4 8 7 5 6... But the fist gun can be bought for 1 moneyticket and the 2 also. Will the answer 2 1 3 4 8 7 5 6 be correct?? No. If the same quantity of notes was paid for two rifles, then the rifle with the smallest number should go first. |
| Use this to get AC! | Tigran92[RAU_902] | 1586. Threeprime Numbers | 5 Nov 2010 01:30 | 1 |
|
| mistake in English statement | Orfest (Novosibirsk SU) | 1317. Hail | 4 Nov 2010 23:59 | 2 |
This is said in the input description: The first line of the input contains two integers: n (3 ≤ n ≤ 10), which is the number of polygon vertices, and h (1.00 ≤ h ≤ 100.00). And this is the first line of sample: 4 10.00 h does not look to be integer. |
| No subject | Enigma | 1091. Tmutarakan Exams | 4 Nov 2010 16:11 | 3 |
Edited by author 04.11.2010 16:04 MyCode in Java : int k = sc.nextInt(); int n = sc.nextInt(); int z = 0; s = new BigInteger("0"); int[] a = new int[] {1,2,3,5,7,11,13,17,19,23}; int[] b = new int[]{1,6,10,14,15,21,22}; sn = new BigInteger("0"); for (int j = 1; j <=9; j++) { z = n/a[j]; if (z>=k) { almashtirishlar(z,k); s = s.add(sn); }else break; } for (int i = 1; i <=6; i++) { z = n/b[i]; if (z>=k){ almashtirishlar(z, k); s = s.subtract(sn); }else break; } if(s.compareTo(new BigInteger("10000"))<0)System.out.println(s); else System.out.println(10000); } public static void almashtirishlar(int q,int kk) { BigInteger s1 = new BigInteger("1"); for (int i = 2; i <=q; i++) { s1 = s1.multiply(new BigInteger(i+"")); } BigInteger s2 = new BigInteger("1"); for (int i = 2; i <=kk; i++) { s2 = s2.multiply(new BigInteger(i+"")); } BigInteger s3 = new BigInteger("1"); for (int i = 2; i <=q-kk; i++) { s3 = s3.multiply(new BigInteger(i+"")); } sn = s1.divide(s2.multiply(s3)); } } Hello Enigma 4 Nov 2010 16:11 |
| THRILLER! | Micheal Jackson | 1712. Cipher Grille | 4 Nov 2010 14:20 | 1 |
I AM SO SCARED OF THIS PROBLEM, AAAAAH |
| C++ hint | ASK | 1134. Cards | 4 Nov 2010 13:51 | 1 |
The new compiler supports regex and thus the problem can be solved with 12 lines of real code (263 chars) and a 5-line header (include, ...). |
| Code | Proba | 1000. A+B Problem | 4 Nov 2010 09:44 | 1 |
Code Proba 4 Nov 2010 09:44 it's very simple var a,b:integer; begin read(a,b); write(a+b); end. |
| Can someone give me a hint about test32? | yuyan | 1299. Psylonians | 4 Nov 2010 06:24 | 2 |
What is test 32?I can't find what's wrong with my code. Please give me some hints? Thanks. You don't apply this rule correctly: "According to the “Defense” pattern, robot’s actions are defined as follows: calculate the number of enemies and multiply it by 20. If the result is not less than the amount of ammunition units left, the robot will “Retreat and Return Fire”. Otherwise, it will act as if following the “Guard” pattern." Edited by author 04.11.2010 06:24 |